pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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.7.2-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <name>xxl-job</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. <build>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-compiler-plugin</artifactId>
  22. <version>3.1</version>
  23. <configuration>
  24. <source>1.7</source>
  25. <target>1.7</target>
  26. <encoding>UTF8</encoding>
  27. </configuration>
  28. </plugin>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-war-plugin</artifactId>
  32. <version>2.2</version>
  33. <configuration>
  34. <archiveClasses>false</archiveClasses>
  35. </configuration>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-surefire-plugin</artifactId>
  40. <version>2.19.1</version>
  41. <configuration>
  42. <skip>true</skip>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. <licenses>
  48. <license>
  49. <name>GNU General Public License, version 2</name>
  50. <url>http://opensource.org/licenses/GPL-2.0</url>
  51. </license>
  52. </licenses>
  53. <scm>
  54. <tag>master</tag>
  55. <url>https://github.com/xuxueli/xxl-job.git</url>
  56. <connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
  57. <developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
  58. </scm>
  59. <developers>
  60. <developer>
  61. <id>XXL</id>
  62. <name>xuxueli</name>
  63. <email>931591021@qq.com</email>
  64. <url>https://github.com/xuxueli</url>
  65. </developer>
  66. </developers>
  67. <profiles>
  68. <profile>
  69. <id>release</id>
  70. <build>
  71. <plugins>
  72. <!-- Source -->
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-source-plugin</artifactId>
  76. <version>2.2.1</version>
  77. <executions>
  78. <execution>
  79. <phase>package</phase>
  80. <goals>
  81. <goal>jar-no-fork</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. <!-- Javadoc -->
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-javadoc-plugin</artifactId>
  90. <version>2.9.1</version>
  91. <executions>
  92. <execution>
  93. <phase>package</phase>
  94. <goals>
  95. <goal>jar</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. <!-- GPG -->
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-gpg-plugin</artifactId>
  104. <version>1.6</version>
  105. <configuration>
  106. <useAgent>false</useAgent>
  107. </configuration>
  108. <executions>
  109. <execution>
  110. <phase>verify</phase>
  111. <goals>
  112. <goal>sign</goal>
  113. </goals>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. <distributionManagement>
  120. <snapshotRepository>
  121. <id>oss</id>
  122. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  123. </snapshotRepository>
  124. <repository>
  125. <id>oss</id>
  126. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  127. </repository>
  128. </distributionManagement>
  129. </profile>
  130. </profiles>
  131. </project>