hutool-parent-4.0.9.pom 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <groupId>cn.hutool</groupId>
  7. <artifactId>hutool-parent</artifactId>
  8. <version>4.0.9</version>
  9. <name>hutool</name>
  10. <description>提供丰富的Java工具方法</description>
  11. <url>https://github.com/looly/hutool4</url>
  12. <modules>
  13. <module>hutool-all</module>
  14. <module>hutool-aop</module>
  15. <module>hutool-bloomFilter</module>
  16. <module>hutool-cache</module>
  17. <module>hutool-core</module>
  18. <module>hutool-cron</module>
  19. <module>hutool-crypto</module>
  20. <module>hutool-db</module>
  21. <module>hutool-dfa</module>
  22. <module>hutool-extra</module>
  23. <module>hutool-http</module>
  24. <module>hutool-log</module>
  25. <module>hutool-script</module>
  26. <module>hutool-setting</module>
  27. <module>hutool-system</module>
  28. <module>hutool-json</module>
  29. <module>hutool-poi</module>
  30. <module>hutool-captcha</module>
  31. </modules>
  32. <properties>
  33. <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
  34. <project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
  35. <!-- versions -->
  36. <junit.version>4.12</junit.version>
  37. <servlet-api.version>3.1.0</servlet-api.version>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>${junit.version}</version>
  44. <scope>test</scope>
  45. </dependency>
  46. </dependencies>
  47. <dependencyManagement>
  48. <dependencies>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. <version>${servlet-api.version}</version>
  53. </dependency>
  54. </dependencies>
  55. </dependencyManagement>
  56. <issueManagement>
  57. <system>Github Issue</system>
  58. <url>https://github.com/looly/hutool/issues</url>
  59. </issueManagement>
  60. <licenses>
  61. <license>
  62. <name>The Apache Software License, Version 2.0</name>
  63. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  64. </license>
  65. </licenses>
  66. <developers>
  67. <developer>
  68. <name>Looly</name>
  69. <email>loolly@gmail.com</email>
  70. </developer>
  71. </developers>
  72. <scm>
  73. <connection>scm:git@github.com:looly/hutool.git</connection>
  74. <developerConnection>scm:git@github.com:looly/hutool.git</developerConnection>
  75. <url>git@github.com:looly/hutool.git</url>
  76. </scm>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-compiler-plugin</artifactId>
  82. <version>3.7.0</version>
  83. <configuration>
  84. <source>7</source>
  85. <target>7</target>
  86. </configuration>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-javadoc-plugin</artifactId>
  91. <version>2.10.4</version>
  92. <configuration>
  93. <aggregate>true</aggregate>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. <profiles>
  99. <profile>
  100. <id>release</id>
  101. <distributionManagement>
  102. <snapshotRepository>
  103. <id>oss</id>
  104. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  105. </snapshotRepository>
  106. <repository>
  107. <id>oss</id>
  108. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  109. </repository>
  110. </distributionManagement>
  111. <build>
  112. <plugins>
  113. <!-- Source -->
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-source-plugin</artifactId>
  117. <version>3.0.1</version>
  118. <executions>
  119. <execution>
  120. <phase>package</phase>
  121. <goals>
  122. <goal>jar-no-fork</goal>
  123. </goals>
  124. </execution>
  125. </executions>
  126. </plugin>
  127. <!-- Javadoc -->
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-javadoc-plugin</artifactId>
  131. <version>2.10.4</version>
  132. <executions>
  133. <execution>
  134. <phase>package</phase>
  135. <goals>
  136. <goal>jar</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. <!-- Gpg Signature -->
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-gpg-plugin</artifactId>
  145. <version>1.6</version>
  146. <executions>
  147. <execution>
  148. <id>sign-artifacts</id>
  149. <phase>verify</phase>
  150. <goals>
  151. <goal>sign</goal>
  152. </goals>
  153. </execution>
  154. </executions>
  155. </plugin>
  156. </plugins>
  157. </build>
  158. </profile>
  159. </profiles>
  160. </project>