pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <parent>
  3. <groupId>org.pwm-project</groupId>
  4. <artifactId>pwm</artifactId>
  5. <version>2.1.0-SNAPSHOT</version>
  6. <relativePath>../pom.xml</relativePath>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <url>https://github.com/pwm-project/pwm</url>
  10. <artifactId>pwm-lib-util</artifactId>
  11. <packaging>jar</packaging>
  12. <name>PWM Password Self Service: Library JAR - Utilities</name>
  13. <properties>
  14. <skipTests>false</skipTests>
  15. </properties>
  16. <profiles>
  17. <profile>
  18. <id>skip-tests</id>
  19. <properties>
  20. <skipTests>true</skipTests>
  21. </properties>
  22. </profile>
  23. <profile>
  24. <id>enable-extended-tests</id>
  25. <properties>
  26. <skipExtendedTests>false</skipExtendedTests>
  27. </properties>
  28. <activation>
  29. <activeByDefault>false</activeByDefault>
  30. </activation>
  31. </profile>
  32. </profiles>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-jar-plugin</artifactId>
  38. <version>3.3.0</version>
  39. <configuration>
  40. <archive>
  41. <manifest>
  42. <addDefaultEntries>false</addDefaultEntries>
  43. <addDefaultImplementationEntries>false</addDefaultImplementationEntries>
  44. </manifest>
  45. <manifestEntries>
  46. <Artifact-ID>${project.artifactId}</Artifact-ID>
  47. <Implementation-Title>${project.name}</Implementation-Title>
  48. <Implementation-Version>${project.version}</Implementation-Version>
  49. <Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
  50. <Implementation-URL>${project.organization.url}</Implementation-URL>
  51. <Implementation-Build-Java-Version>${maven.compiler.target}</Implementation-Build-Java-Version>
  52. <SCM-Git-Branch>${git.branch}</SCM-Git-Branch>
  53. <SCM-Git-Commit-ID>${git.commit.id}</SCM-Git-Commit-ID>
  54. <SCM-Git-Commit-ID-Abbrev>${git.commit.id.abbrev}</SCM-Git-Commit-ID-Abbrev>
  55. <SCM-Git-Commit-ID-Description>${git.commit.id.describe}</SCM-Git-Commit-ID-Description>
  56. <SCM-Git-Commit-Timestamp>${git.commit.time}</SCM-Git-Commit-Timestamp>
  57. <SCM-Git-Commit-Dirty>${git.dirty}</SCM-Git-Commit-Dirty>
  58. <SCM-Git-Remote-Origin-URL>${git.remote.origin.url}</SCM-Git-Remote-Origin-URL>
  59. </manifestEntries>
  60. </archive>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. <dependencies>
  66. <dependency>
  67. <groupId>org.pwm-project</groupId>
  68. <artifactId>pwm-lib-data</artifactId>
  69. <version>${project.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-lang3</artifactId>
  74. <version>3.12.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-text</artifactId>
  79. <version>1.10.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-collections4</artifactId>
  84. <version>4.4</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>commons-net</groupId>
  88. <artifactId>commons-net</artifactId>
  89. <version>3.9.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>commons-codec</groupId>
  93. <artifactId>commons-codec</artifactId>
  94. <version>1.15</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>commons-io</groupId>
  98. <artifactId>commons-io</artifactId>
  99. <version>2.11.0</version>
  100. </dependency>
  101. </dependencies>
  102. </project>