pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. <ban-deprecated-stapler.skip>false</ban-deprecated-stapler.skip>
  42. <ban-commons-lang-2.skip>false</ban-commons-lang-2.skip>
  43. <!-- Library versions -->
  44. <otpjava.version>2.1.0</otpjava.version>
  45. <zxing.version>3.5.3</zxing.version>
  46. </properties>
  47. <dependencies>
  48. <!-- TOTP Implementation -->
  49. <dependency>
  50. <groupId>com.github.bastiaanjansen</groupId>
  51. <artifactId>otp-java</artifactId>
  52. <version>${otpjava.version}</version>
  53. </dependency>
  54. <!-- QR Code Generation -->
  55. <dependency>
  56. <groupId>com.google.zxing</groupId>
  57. <artifactId>core</artifactId>
  58. <version>${zxing.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.google.zxing</groupId>
  62. <artifactId>javase</artifactId>
  63. <version>${zxing.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-codec</groupId>
  67. <artifactId>commons-codec</artifactId>
  68. <version>1.19.0</version>
  69. </dependency>
  70. <!-- Jenkins Security -->
  71. <dependency>
  72. <groupId>org.jenkins-ci.plugins</groupId>
  73. <artifactId>credentials</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.jenkins-ci.plugins.workflow</groupId>
  77. <artifactId>workflow-aggregator</artifactId>
  78. <version>608.v67378e9d3db_1</version>
  79. <scope>test</scope>
  80. </dependency>
  81. <!-- Testing -->
  82. <dependency>
  83. <groupId>org.junit.jupiter</groupId>
  84. <artifactId>junit-jupiter</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.junit.vintage</groupId>
  89. <artifactId>junit-vintage-engine</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.mockito</groupId>
  94. <artifactId>mockito-core</artifactId>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.mockito</groupId>
  99. <artifactId>mockito-junit-jupiter</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. </dependencies>
  103. <repositories>
  104. <repository>
  105. <id>repo.jenkins-ci.org</id>
  106. <url>https://repo.jenkins-ci.org/public/</url>
  107. </repository>
  108. <repository>
  109. <id>jitpack.io</id>
  110. <url>https://jitpack.io</url>
  111. </repository>
  112. </repositories>
  113. <pluginRepositories>
  114. <pluginRepository>
  115. <id>repo.jenkins-ci.org</id>
  116. <url>https://repo.jenkins-ci.org/public/</url>
  117. </pluginRepository>
  118. </pluginRepositories>
  119. <build>
  120. <plugins>
  121. <plugin>
  122. <groupId>org.jenkins-ci.tools</groupId>
  123. <artifactId>maven-hpi-plugin</artifactId>
  124. <extensions>true</extensions>
  125. <configuration>
  126. <compatibleSinceVersion>2.426.1</compatibleSinceVersion>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>