pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>quartz-service-parent</artifactId>
  7. <groupId>cn.datax</groupId>
  8. <version>2.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>2.0.0</version>
  12. <artifactId>quartz-service</artifactId>
  13. <dependencies>
  14. <!--web 模块-->
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. <exclusions>
  19. <exclusion>
  20. <artifactId>spring-boot-starter-tomcat</artifactId>
  21. <groupId>org.springframework.boot</groupId>
  22. </exclusion>
  23. </exclusions>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-undertow</artifactId>
  28. </dependency>
  29. <!--配置中心客户端 -->
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter-config</artifactId>
  33. </dependency>
  34. <!--实现对Quartz的自动化配置-->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-quartz</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mapstruct</groupId>
  41. <artifactId>mapstruct</artifactId>
  42. <version>${mapstruct.version}</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mapstruct</groupId>
  47. <artifactId>mapstruct-processor</artifactId>
  48. <version>${mapstruct.version}</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.datax</groupId>
  53. <artifactId>datax-common-mybatis</artifactId>
  54. <version>2.0.0</version>
  55. <exclusions>
  56. <exclusion>
  57. <groupId>com.baomidou</groupId>
  58. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.datax</groupId>
  64. <artifactId>datax-common-redis</artifactId>
  65. <version>2.0.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.datax</groupId>
  69. <artifactId>datax-common-security</artifactId>
  70. <version>2.0.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>cn.datax</groupId>
  74. <artifactId>datax-common-log</artifactId>
  75. <version>2.0.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>cn.datax</groupId>
  79. <artifactId>quartz-service-api</artifactId>
  80. <version>2.0.0</version>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>