pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>cn.analysys</groupId>
  6. <artifactId>escheduler</artifactId>
  7. <version>1.1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>escheduler-dao</artifactId>
  10. <name>escheduler-dao</name>
  11. <url>http://maven.apache.org</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.mybatis.spring.boot</groupId>
  23. <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mybatis.spring.boot</groupId>
  33. <artifactId>mybatis-spring-boot-starter</artifactId>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>org.apache.tomcat</groupId>
  37. <artifactId>tomcat-jdbc</artifactId>
  38. </exclusion>
  39. <exclusion>
  40. <artifactId>log4j-to-slf4j</artifactId>
  41. <groupId>org.apache.logging.log4j</groupId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.ow2.asm</groupId>
  52. <artifactId>asm</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-autoconfigure</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>mysql</groupId>
  66. <artifactId>mysql-connector-java</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>druid</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>ch.qos.logback</groupId>
  74. <artifactId>logback-classic</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.fasterxml.jackson.core</groupId>
  78. <artifactId>jackson-annotations</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.fasterxml.jackson.core</groupId>
  82. <artifactId>jackson-databind</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpclient</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-httpclient</groupId>
  90. <artifactId>commons-httpclient</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.commons</groupId>
  94. <artifactId>commons-lang3</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>commons-lang</groupId>
  98. <artifactId>commons-lang</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <scope>compile</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.cronutils</groupId>
  107. <artifactId>cron-utils</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.quartz-scheduler</groupId>
  111. <artifactId>quartz</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.quartz-scheduler</groupId>
  115. <artifactId>quartz-jobs</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-configuration</groupId>
  119. <artifactId>commons-configuration</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>cn.analysys</groupId>
  123. <artifactId>escheduler-common</artifactId>
  124. <exclusions>
  125. <exclusion>
  126. <artifactId>protobuf-java</artifactId>
  127. <groupId>com.google.protobuf</groupId>
  128. </exclusion>
  129. </exclusions>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-test</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>io.swagger</groupId>
  138. <artifactId>swagger-annotations</artifactId>
  139. <version>1.5.20</version>
  140. <scope>compile</scope>
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <plugins>
  145. <plugin>
  146. <groupId>org.apache.maven.plugins</groupId>
  147. <artifactId>maven-compiler-plugin</artifactId>
  148. <configuration>
  149. <source>${java.version}</source>
  150. <target>${java.version}</target>
  151. <encoding>${project.build.sourceEncoding}</encoding>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </project>