pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.analysys</groupId>
  7. <artifactId>escheduler</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>escheduler-api</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.analysys</groupId>
  15. <artifactId>escheduler-dao</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.analysys</groupId>
  19. <artifactId>escheduler-common</artifactId>
  20. <exclusions>
  21. <exclusion>
  22. <groupId>io.netty</groupId>
  23. <artifactId>netty</artifactId>
  24. </exclusion>
  25. <exclusion>
  26. <groupId>io.netty</groupId>
  27. <artifactId>netty-all</artifactId>
  28. </exclusion>
  29. <exclusion>
  30. <groupId>com.google</groupId>
  31. <artifactId>netty</artifactId>
  32. </exclusion>
  33. <exclusion>
  34. <artifactId>leveldbjni-all</artifactId>
  35. <groupId>org.fusesource.leveldbjni</groupId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <!--springboot-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-parent</artifactId>
  43. <version>${spring.boot.version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-web</artifactId>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-tomcat</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- use jetty -->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-jetty</artifactId>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.eclipse.jetty.websocket</groupId>
  68. <artifactId>javax-websocket-server-impl</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>org.eclipse.jetty.websocket</groupId>
  72. <artifactId>websocket-server</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-test</artifactId>
  79. <scope>test</scope>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.ow2.asm</groupId>
  83. <artifactId>asm</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot</artifactId>
  88. </exclusion>
  89. <exclusion>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-autoconfigure</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-aop</artifactId>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter</artifactId>
  102. </exclusion>
  103. </exclusions>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-context</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.httpcomponents</groupId>
  111. <artifactId>httpcore</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.httpcomponents</groupId>
  115. <artifactId>httpclient</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.fasterxml.jackson.core</groupId>
  119. <artifactId>jackson-annotations</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.fasterxml.jackson.core</groupId>
  123. <artifactId>jackson-databind</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.fasterxml.jackson.core</groupId>
  127. <artifactId>jackson-core</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.alibaba</groupId>
  131. <artifactId>fastjson</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-collections</groupId>
  135. <artifactId>commons-collections</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.quartz-scheduler</groupId>
  139. <artifactId>quartz</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.quartz-scheduler</groupId>
  143. <artifactId>quartz-jobs</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>cn.analysys</groupId>
  147. <artifactId>escheduler-rpc</artifactId>
  148. </dependency>
  149. <dependency>
  150. <groupId>junit</groupId>
  151. <artifactId>junit</artifactId>
  152. <version>4.12</version>
  153. <scope>test</scope>
  154. </dependency>
  155. </dependencies>
  156. <build>
  157. <plugins>
  158. <plugin>
  159. <artifactId>maven-assembly-plugin</artifactId>
  160. <version>2.6</version>
  161. <configuration>
  162. <descriptors>
  163. <descriptor>src/main/assembly/package.xml</descriptor>
  164. </descriptors>
  165. <appendAssemblyId>false</appendAssemblyId>
  166. </configuration>
  167. <executions>
  168. <execution>
  169. <id>make-assembly</id>
  170. <phase>package</phase>
  171. <goals>
  172. <goal>single</goal>
  173. </goals>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-compiler-plugin</artifactId>
  180. <configuration>
  181. <source>${java.version}</source>
  182. <target>${java.version}</target>
  183. <encoding>${project.build.sourceEncoding}</encoding>
  184. </configuration>
  185. </plugin>
  186. </plugins>
  187. </build>
  188. </project>