pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>5043.v855ff4819a_0f</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. </dependencies>
  66. <repositories>
  67. <repository>
  68. <id>repo.jenkins-ci.org</id>
  69. <url>https://repo.jenkins-ci.org/public/</url>
  70. </repository>
  71. </repositories>
  72. <pluginRepositories>
  73. <pluginRepository>
  74. <id>repo.jenkins-ci.org</id>
  75. <url>https://repo.jenkins-ci.org/public/</url>
  76. </pluginRepository>
  77. </pluginRepositories>
  78. </project>