pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.xxl</groupId>
  5. <artifactId>xxl-job</artifactId>
  6. <version>${xxl-job.version}</version>
  7. <packaging>pom</packaging>
  8. <modules>
  9. <module>xxl-job-admin</module>
  10. <module>xxl-job-core</module>
  11. <module>xxl-job-executor-example</module>
  12. </modules>
  13. <properties>
  14. <xxl-job.version>1.4.0</xxl-job.version>
  15. <spring.version>3.2.14.RELEASE</spring.version>
  16. </properties>
  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.6</source>
  25. <target>1.6</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. </project>