pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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.2-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. <xxl-rpc.version>1.3.2</xxl-rpc.version>
  24. <spring-boot.version>1.5.19.RELEASE</spring-boot.version>
  25. <mybatis-spring-boot-starter.version>1.3.3</mybatis-spring-boot-starter.version>
  26. <mysql-connector-java.version>5.1.47</mysql-connector-java.version>
  27. <spring.version>4.3.22.RELEASE</spring.version>
  28. <freemarker.version>2.3.28</freemarker.version>
  29. <slf4j-api.version>1.7.25</slf4j-api.version>
  30. <junit.version>4.12</junit.version>
  31. <commons-exec.version>1.3</commons-exec.version>
  32. <commons-lang3.version>3.8.1</commons-lang3.version>
  33. <groovy.version>2.5.6</groovy.version>
  34. <quartz.version>2.3.0</quartz.version>
  35. </properties>
  36. <build>
  37. <plugins>
  38. </plugins>
  39. </build>
  40. <licenses>
  41. <license>
  42. <name>GNU General Public License version 3</name>
  43. <url>https://opensource.org/licenses/GPL-3.0</url>
  44. </license>
  45. </licenses>
  46. <scm>
  47. <tag>master</tag>
  48. <url>https://github.com/xuxueli/xxl-job.git</url>
  49. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  50. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  51. </scm>
  52. <developers>
  53. <developer>
  54. <id>XXL</id>
  55. <name>xuxueli</name>
  56. <email>931591021@qq.com</email>
  57. <url>https://github.com/xuxueli</url>
  58. </developer>
  59. </developers>
  60. <profiles>
  61. <profile>
  62. <id>release</id>
  63. <build>
  64. <plugins>
  65. <!-- Source -->
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-source-plugin</artifactId>
  69. <version>3.0.1</version>
  70. <executions>
  71. <execution>
  72. <phase>package</phase>
  73. <goals>
  74. <goal>jar-no-fork</goal>
  75. </goals>
  76. </execution>
  77. </executions>
  78. </plugin>
  79. <!-- Javadoc -->
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-javadoc-plugin</artifactId>
  83. <version>3.0.0</version>
  84. <executions>
  85. <execution>
  86. <phase>package</phase>
  87. <goals>
  88. <goal>jar</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <!-- GPG -->
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-gpg-plugin</artifactId>
  97. <version>1.6</version>
  98. <configuration>
  99. <useAgent>false</useAgent>
  100. </configuration>
  101. <executions>
  102. <execution>
  103. <phase>verify</phase>
  104. <goals>
  105. <goal>sign</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. <distributionManagement>
  113. <snapshotRepository>
  114. <id>oss</id>
  115. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  116. </snapshotRepository>
  117. <repository>
  118. <id>oss</id>
  119. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  120. </repository>
  121. </distributionManagement>
  122. </profile>
  123. </profiles>
  124. </project>