pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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-preview</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. </exclusions>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-test</artifactId>
  44. <scope>test</scope>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>org.ow2.asm</groupId>
  48. <artifactId>asm</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-autoconfigure</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>druid</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>ch.qos.logback</groupId>
  70. <artifactId>logback-classic</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.fasterxml.jackson.core</groupId>
  74. <artifactId>jackson-annotations</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.fasterxml.jackson.core</groupId>
  78. <artifactId>jackson-databind</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.httpcomponents</groupId>
  82. <artifactId>httpclient</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-httpclient</groupId>
  86. <artifactId>commons-httpclient</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-lang</groupId>
  94. <artifactId>commons-lang</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.alibaba</groupId>
  98. <artifactId>fastjson</artifactId>
  99. <scope>compile</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.cronutils</groupId>
  103. <artifactId>cron-utils</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.quartz-scheduler</groupId>
  107. <artifactId>quartz</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.quartz-scheduler</groupId>
  111. <artifactId>quartz-jobs</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-configuration</groupId>
  115. <artifactId>commons-configuration</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>cn.analysys</groupId>
  119. <artifactId>escheduler-common</artifactId>
  120. <exclusions>
  121. <exclusion>
  122. <artifactId>protobuf-java</artifactId>
  123. <groupId>com.google.protobuf</groupId>
  124. </exclusion>
  125. </exclusions>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-test</artifactId>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>io.swagger</groupId>
  134. <artifactId>swagger-annotations</artifactId>
  135. <version>1.5.20</version>
  136. <scope>compile</scope>
  137. </dependency>
  138. </dependencies>
  139. <build>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-compiler-plugin</artifactId>
  144. <configuration>
  145. <source>${java.version}</source>
  146. <target>${java.version}</target>
  147. <encoding>${project.build.sourceEncoding}</encoding>
  148. </configuration>
  149. </plugin>
  150. </plugins>
  151. </build>
  152. </project>