pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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>5.18</version>
  8. <relativePath />
  9. </parent>
  10. <groupId>io.jenkins.plugins</groupId>
  11. <artifactId>mfa-google-auth</artifactId>
  12. <version>${revision}${changelist}</version>
  13. <packaging>hpi</packaging>
  14. <name>MFA Google Auth Plugin</name>
  15. <description>Adds TOTP-based Multi-Factor Authentication (MFA/2FA) to Jenkins using Google Authenticator.
  16. Enhances security by requiring a time-based one-time password in addition to regular credentials.
  17. Features QR code setup, per-user enforcement, and secure secret storage.</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 />
  34. <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
  35. <jenkins.baseline>2.479</jenkins.baseline>
  36. <jenkins.version>${jenkins.baseline}.3</jenkins.version>
  37. <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
  38. <spotless.check.skip>false</spotless.check.skip>
  39. </properties>
  40. <dependencyManagement>
  41. <dependencies>
  42. <dependency>
  43. <groupId>io.jenkins.tools.bom</groupId>
  44. <artifactId>bom-${jenkins.baseline}.x</artifactId>
  45. <version>5054.v620b_5d2b_d5e6</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. </dependencies>
  50. </dependencyManagement>
  51. <dependencies>
  52. <dependency>
  53. <groupId>com.google.zxing</groupId>
  54. <artifactId>core</artifactId>
  55. <version>3.5.3</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.zxing</groupId>
  59. <artifactId>javase</artifactId>
  60. <version>3.5.3</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.warrenstrange</groupId>
  64. <artifactId>googleauth</artifactId>
  65. <version>1.5.0</version>
  66. </dependency>
  67. <!-- TEST -->
  68. <dependency>
  69. <groupId>org.junit.vintage</groupId>
  70. <artifactId>junit-vintage-engine</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mockito</groupId>
  75. <artifactId>mockito-core</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. </dependencies>
  79. <repositories>
  80. <repository>
  81. <id>repo.jenkins-ci.org</id>
  82. <url>https://repo.jenkins-ci.org/public/</url>
  83. </repository>
  84. </repositories>
  85. <pluginRepositories>
  86. <pluginRepository>
  87. <id>repo.jenkins-ci.org</id>
  88. <url>https://repo.jenkins-ci.org/public/</url>
  89. </pluginRepository>
  90. </pluginRepositories>
  91. </project>