pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.xuxueli</groupId>
  5. <artifactId>xxl-job</artifactId>
  6. <version>1.8.1</version>
  7. <packaging>pom</packaging>
  8. <name>${project.artifactId}</name>
  9. <description>A lightweight distributed task scheduling framework.</description>
  10. <url>http://www.xuxueli.com/</url>
  11. <modules>
  12. <module>xxl-job-core</module>
  13. <module>xxl-job-admin</module>
  14. <module>xxl-job-executor-example</module>
  15. <module>xxl-job-executor-springboot-example</module>
  16. </modules>
  17. <properties>
  18. <javax.servlet-api.version>3.0.1</javax.servlet-api.version>
  19. <jsp-api.version>2.2</jsp-api.version>
  20. <spring.version>3.2.18.RELEASE</spring.version>
  21. <jackson-mapper-asl.version>1.9.13</jackson-mapper-asl.version>
  22. <aspectjweaver.version>1.8.7</aspectjweaver.version>
  23. <slf4j-api.version>1.7.25</slf4j-api.version>
  24. <freemarker.version>2.3.20</freemarker.version>
  25. <junit.version>4.11</junit.version>
  26. <jetty-server.version>9.2.22.v20170606</jetty-server.version>
  27. <hessian.version>4.0.38</hessian.version>
  28. <httpclient.version>4.3.6</httpclient.version>
  29. <commons-exec.version>1.3</commons-exec.version>
  30. <commons-beanutils.version>1.9.2</commons-beanutils.version>
  31. <commons-lang.version>2.6</commons-lang.version>
  32. <c3p0.version>0.9.5.2</c3p0.version>
  33. <mysql-connector-java.version>5.1.29</mysql-connector-java.version>
  34. <mybatis-spring.version>1.2.2</mybatis-spring.version>
  35. <mybatis.version>3.2.8</mybatis.version>
  36. <groovy-all.version>2.4.5</groovy-all.version>
  37. <mail.version>1.4.6</mail.version>
  38. <quartz.version>2.3.0</quartz.version>
  39. <spring-boot.version>1.5.6.RELEASE</spring-boot.version>
  40. </properties>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-compiler-plugin</artifactId>
  46. <version>3.1</version>
  47. <configuration>
  48. <source>1.7</source>
  49. <target>1.7</target>
  50. <encoding>UTF8</encoding>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-war-plugin</artifactId>
  56. <version>2.2</version>
  57. <configuration>
  58. <archiveClasses>false</archiveClasses>
  59. </configuration>
  60. </plugin>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-surefire-plugin</artifactId>
  64. <version>2.19.1</version>
  65. <configuration>
  66. <skip>true</skip>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. <licenses>
  72. <license>
  73. <name>GNU General Public License version 3</name>
  74. <url>https://opensource.org/licenses/GPL-3.0</url>
  75. </license>
  76. </licenses>
  77. <scm>
  78. <tag>master</tag>
  79. <url>https://github.com/xuxueli/xxl-job.git</url>
  80. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  81. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  82. </scm>
  83. <developers>
  84. <developer>
  85. <id>XXL</id>
  86. <name>xuxueli</name>
  87. <email>931591021@qq.com</email>
  88. <url>https://github.com/xuxueli</url>
  89. </developer>
  90. </developers>
  91. <profiles>
  92. <profile>
  93. <id>release</id>
  94. <build>
  95. <plugins>
  96. <!-- Source -->
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-source-plugin</artifactId>
  100. <version>2.2.1</version>
  101. <executions>
  102. <execution>
  103. <phase>package</phase>
  104. <goals>
  105. <goal>jar-no-fork</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. <!-- Javadoc -->
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-javadoc-plugin</artifactId>
  114. <version>2.9.1</version>
  115. <executions>
  116. <execution>
  117. <phase>package</phase>
  118. <goals>
  119. <goal>jar</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. </plugin>
  124. <!-- GPG -->
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-gpg-plugin</artifactId>
  128. <version>1.6</version>
  129. <configuration>
  130. <useAgent>false</useAgent>
  131. </configuration>
  132. <executions>
  133. <execution>
  134. <phase>verify</phase>
  135. <goals>
  136. <goal>sign</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. <distributionManagement>
  144. <snapshotRepository>
  145. <id>oss</id>
  146. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  147. </snapshotRepository>
  148. <repository>
  149. <id>oss</id>
  150. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  151. </repository>
  152. </distributionManagement>
  153. </profile>
  154. </profiles>
  155. </project>