pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.jenkins-ci.plugins</groupId>
  6. <artifactId>plugin</artifactId>
  7. <version>6.2152.ve00a_731c3ce9</version>
  8. <relativePath />
  9. </parent>
  10. <groupId>io.jenkins.plugins</groupId>
  11. <artifactId>mfa-totp</artifactId>
  12. <version>${revision}${changelist}</version>
  13. <packaging>hpi</packaging>
  14. <name>MFA TOTP Plugin</name>
  15. <description>Adds standards-compliant TOTP (RFC 6238) Multi-Factor Authentication to Jenkins.
  16. Compatible with all major authenticator apps (Google Authenticator, Microsoft Authenticator, Authy, etc.).
  17. Features secure secret storage, QR code enrollment, and flexible enforcement policies.</description>
  18. <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
  19. <licenses>
  20. <license>
  21. <name>MIT License</name>
  22. <url>https://opensource.org/license/mit/</url>
  23. </license>
  24. </licenses>
  25. <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
  26. <connection>scm:git:https://github.com/${gitHubRepo}</connection>
  27. <developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection>
  28. <tag>${scmTag}</tag>
  29. <url>https://github.com/${gitHubRepo}</url>
  30. </scm>
  31. <properties>
  32. <revision>1.0</revision>
  33. <changelist>.999999-SNAPSHOT</changelist>
  34. <jenkins.baseline>2.528</jenkins.baseline>
  35. <jenkins.version>${jenkins.baseline}.3</jenkins.version>
  36. <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
  37. <spotless.check.skip>false</spotless.check.skip>
  38. <security.reporting>https://www.jenkins.io/security/#reporting-vulnerabilities</security.reporting>
  39. <security.team>[email protected]</security.team>
  40. <hpi.strictBundledArtifacts>true</hpi.strictBundledArtifacts>
  41. <hpi.bundledArtifacts>commons-codec,core,jai-imageio-core,javase,jcommander,otp-java</hpi.bundledArtifacts>
  42. <ban-deprecated-stapler.skip>false</ban-deprecated-stapler.skip>
  43. <ban-commons-lang-2.skip>false</ban-commons-lang-2.skip>
  44. <!-- Library versions -->
  45. <otpjava.version>2.1.0</otpjava.version>
  46. <zxing.version>3.5.3</zxing.version>
  47. </properties>
  48. <dependencyManagement>
  49. <dependencies>
  50. <dependency>
  51. <groupId>io.jenkins.tools.bom</groupId>
  52. <artifactId>bom-${jenkins.baseline}.x</artifactId>
  53. <version>6364.v16b_76a_4023c7</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. </dependencies>
  58. </dependencyManagement>
  59. <dependencies>
  60. <!-- TOTP Implementation -->
  61. <dependency>
  62. <groupId>com.github.bastiaanjansen</groupId>
  63. <artifactId>otp-java</artifactId>
  64. <version>${otpjava.version}</version>
  65. </dependency>
  66. <!-- QR Code Generation -->
  67. <dependency>
  68. <groupId>com.google.zxing</groupId>
  69. <artifactId>core</artifactId>
  70. <version>${zxing.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.zxing</groupId>
  74. <artifactId>javase</artifactId>
  75. <version>${zxing.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-codec</groupId>
  79. <artifactId>commons-codec</artifactId>
  80. <version>1.19.0</version>
  81. </dependency>
  82. <!-- Jenkins Security -->
  83. <dependency>
  84. <groupId>org.jenkins-ci.plugins</groupId>
  85. <artifactId>credentials</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.jenkins-ci.plugins.workflow</groupId>
  89. <artifactId>workflow-aggregator</artifactId>
  90. <version>608.v67378e9d3db_1</version>
  91. <scope>test</scope>
  92. </dependency>
  93. <!-- Testing -->
  94. <dependency>
  95. <groupId>org.junit.jupiter</groupId>
  96. <artifactId>junit-jupiter</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.junit.vintage</groupId>
  101. <artifactId>junit-vintage-engine</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.mockito</groupId>
  106. <artifactId>mockito-core</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.mockito</groupId>
  111. <artifactId>mockito-junit-jupiter</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. </dependencies>
  115. <repositories>
  116. <repository>
  117. <id>repo.jenkins-ci.org</id>
  118. <url>https://repo.jenkins-ci.org/public/</url>
  119. </repository>
  120. <repository>
  121. <id>jitpack.io</id>
  122. <url>https://jitpack.io</url>
  123. </repository>
  124. </repositories>
  125. <pluginRepositories>
  126. <pluginRepository>
  127. <id>repo.jenkins-ci.org</id>
  128. <url>https://repo.jenkins-ci.org/public/</url>
  129. </pluginRepository>
  130. </pluginRepositories>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.jenkins-ci.tools</groupId>
  135. <artifactId>maven-hpi-plugin</artifactId>
  136. <extensions>true</extensions>
  137. <configuration>
  138. <compatibleSinceVersion>2.426.1</compatibleSinceVersion>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>