pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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>Multi-Factor Authentication with Google Authenticator.</description>
  16. <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
  17. <licenses>
  18. <license>
  19. <name>MIT License</name>
  20. <url>https://opensource.org/license/mit/</url>
  21. </license>
  22. </licenses>
  23. <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
  24. <connection>scm:git:https://github.com/${gitHubRepo}</connection>
  25. <developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection>
  26. <tag>${scmTag}</tag>
  27. <url>https://github.com/${gitHubRepo}</url>
  28. </scm>
  29. <properties>
  30. <revision>1.0</revision>
  31. <changelist />
  32. <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
  33. <jenkins.baseline>2.479</jenkins.baseline>
  34. <jenkins.version>${jenkins.baseline}.3</jenkins.version>
  35. <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
  36. <spotless.check.skip>false</spotless.check.skip>
  37. </properties>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>io.jenkins.tools.bom</groupId>
  42. <artifactId>bom-${jenkins.baseline}.x</artifactId>
  43. <version>5054.v620b_5d2b_d5e6</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. <dependencies>
  50. <dependency>
  51. <groupId>com.google.zxing</groupId>
  52. <artifactId>core</artifactId>
  53. <version>3.5.3</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.google.zxing</groupId>
  57. <artifactId>javase</artifactId>
  58. <version>3.5.3</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.warrenstrange</groupId>
  62. <artifactId>googleauth</artifactId>
  63. <version>1.5.0</version>
  64. </dependency>
  65. <!-- TEST -->
  66. <dependency>
  67. <groupId>org.junit.vintage</groupId>
  68. <artifactId>junit-vintage-engine</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.mockito</groupId>
  73. <artifactId>mockito-core</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. </dependencies>
  77. <repositories>
  78. <repository>
  79. <id>repo.jenkins-ci.org</id>
  80. <url>https://repo.jenkins-ci.org/public/</url>
  81. </repository>
  82. </repositories>
  83. <pluginRepositories>
  84. <pluginRepository>
  85. <id>repo.jenkins-ci.org</id>
  86. <url>https://repo.jenkins-ci.org/public/</url>
  87. </pluginRepository>
  88. </pluginRepositories>
  89. </project>