pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. <parent>
  5. <groupId>com.crunii.microservice</groupId>
  6. <artifactId>service-xxl-job</artifactId>
  7. <version>${micro.version}</version>
  8. </parent>
  9. <artifactId>xxl-job-core</artifactId>
  10. <version>${micro.version}</version>
  11. <packaging>jar</packaging>
  12. <name>${project.artifactId}</name>
  13. <description>A distributed task scheduling framework.</description>
  14. <url>https://www.xuxueli.com/</url>
  15. <dependencies>
  16. <!-- ********************** embed server: netty + gson ********************** -->
  17. <dependency>
  18. <groupId>io.netty</groupId>
  19. <artifactId>netty-codec-http</artifactId>
  20. <version>${netty.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.code.gson</groupId>
  24. <artifactId>gson</artifactId>
  25. <version>${gson.version}</version>
  26. </dependency>
  27. <!-- ********************** plugin ********************** -->
  28. <!-- groovy-all -->
  29. <dependency>
  30. <groupId>org.apache.groovy</groupId>
  31. <artifactId>groovy</artifactId>
  32. <version>${groovy.version}</version>
  33. </dependency>
  34. <!-- spring-context -->
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-context</artifactId>
  38. <version>${spring.version}</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <!-- ********************** base ********************** -->
  42. <!-- slf4j -->
  43. <dependency>
  44. <groupId>org.slf4j</groupId>
  45. <artifactId>slf4j-api</artifactId>
  46. <version>${slf4j-api.version}</version>
  47. </dependency>
  48. <!-- javax.annotation-api -->
  49. <dependency>
  50. <groupId>javax.annotation</groupId>
  51. <artifactId>javax.annotation-api</artifactId>
  52. <version>${javax.annotation-api.version}</version>
  53. <scope>provided</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.dameng</groupId>
  57. <artifactId>DmJdbcDriver18</artifactId>
  58. <version>8.1.1.193</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>${lombok.version}</version>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <!-- 跳过parent的打包插件 -->
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. <configuration>
  73. <skip>true</skip>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. <configuration>
  80. <executable>true</executable>
  81. </configuration>
  82. <executions>
  83. <execution>
  84. <phase>none</phase>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-compiler-plugin</artifactId>
  91. <version>3.8.0</version>
  92. <configuration>
  93. <source>1.8</source>
  94. <target>1.8</target>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>