pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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>2.0.0-SNAPSHOT</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-samples</module>
  15. </modules>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  20. <maven.compiler.source>1.7</maven.compiler.source>
  21. <maven.compiler.target>1.7</maven.compiler.target>
  22. <maven.test.skip>true</maven.test.skip>
  23. <!--<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
  24. <javax.servlet.jsp-api.version>2.3.3</javax.servlet.jsp-api.version>-->
  25. <spring-boot.version>1.5.17.RELEASE</spring-boot.version>
  26. <mybatis-spring-boot-starter.version>1.3.2</mybatis-spring-boot-starter.version>
  27. <mysql-connector-java.version>5.1.47</mysql-connector-java.version>
  28. <spring.version>4.3.20.RELEASE</spring.version>
  29. <slf4j-api.version>1.7.25</slf4j-api.version>
  30. <freemarker.version>2.3.28</freemarker.version>
  31. <junit.version>4.12</junit.version>
  32. <commons-exec.version>1.3</commons-exec.version>
  33. <commons-collections4.version>4.2</commons-collections4.version>
  34. <commons-lang3.version>3.8.1</commons-lang3.version>
  35. <commons-email.version>1.5</commons-email.version>
  36. <groovy-all.version>2.5.3</groovy-all.version>
  37. <quartz.version>2.3.0</quartz.version>
  38. <jackson.version>2.9.7</jackson.version>
  39. <jetty-server.version>9.2.26.v20180806</jetty-server.version>
  40. </properties>
  41. <build>
  42. <plugins>
  43. </plugins>
  44. </build>
  45. <licenses>
  46. <license>
  47. <name>GNU General Public License version 3</name>
  48. <url>https://opensource.org/licenses/GPL-3.0</url>
  49. </license>
  50. </licenses>
  51. <scm>
  52. <tag>master</tag>
  53. <url>https://github.com/xuxueli/xxl-job.git</url>
  54. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  55. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  56. </scm>
  57. <developers>
  58. <developer>
  59. <id>XXL</id>
  60. <name>xuxueli</name>
  61. <email>931591021@qq.com</email>
  62. <url>https://github.com/xuxueli</url>
  63. </developer>
  64. </developers>
  65. <profiles>
  66. <profile>
  67. <id>release</id>
  68. <build>
  69. <plugins>
  70. <!-- Source -->
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-source-plugin</artifactId>
  74. <version>3.0.1</version>
  75. <executions>
  76. <execution>
  77. <phase>package</phase>
  78. <goals>
  79. <goal>jar-no-fork</goal>
  80. </goals>
  81. </execution>
  82. </executions>
  83. </plugin>
  84. <!-- Javadoc -->
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-javadoc-plugin</artifactId>
  88. <version>3.0.0</version>
  89. <executions>
  90. <execution>
  91. <phase>package</phase>
  92. <goals>
  93. <goal>jar</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. <!-- GPG -->
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-gpg-plugin</artifactId>
  102. <version>1.6</version>
  103. <configuration>
  104. <useAgent>false</useAgent>
  105. </configuration>
  106. <executions>
  107. <execution>
  108. <phase>verify</phase>
  109. <goals>
  110. <goal>sign</goal>
  111. </goals>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. <distributionManagement>
  118. <snapshotRepository>
  119. <id>oss</id>
  120. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  121. </snapshotRepository>
  122. <repository>
  123. <id>oss</id>
  124. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  125. </repository>
  126. </distributionManagement>
  127. </profile>
  128. </profiles>
  129. </project>