pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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>cath</artifactId>
  7. <groupId>com.cath</groupId>
  8. <version>3.8.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>cath-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional> <!-- 表示依赖不会传递 -->
  22. </dependency>
  23. <!-- 数据库连接池 -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-jdbc</artifactId>
  27. </dependency>
  28. <!-- swagger3-->
  29. <dependency>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-boot-starter</artifactId>
  32. </dependency>
  33. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  34. <dependency>
  35. <groupId>io.swagger</groupId>
  36. <artifactId>swagger-models</artifactId>
  37. <version>1.6.2</version>
  38. </dependency>
  39. <!-- Mysql驱动包 -->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <!-- sqlserver驱动包 -->
  45. <dependency>
  46. <groupId>com.microsoft.sqlserver</groupId>
  47. <artifactId>sqljdbc4</artifactId>
  48. <version>4.0</version>
  49. </dependency>
  50. <!-- 核心模块-->
  51. <dependency>
  52. <groupId>com.cath</groupId>
  53. <artifactId>cath-framework</artifactId>
  54. </dependency>
  55. <!-- 定时任务-->
  56. <dependency>
  57. <groupId>com.cath</groupId>
  58. <artifactId>cath-quartz</artifactId>
  59. </dependency>
  60. <!-- 代码生成-->
  61. <dependency>
  62. <groupId>com.cath</groupId>
  63. <artifactId>cath-generator</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>junit</groupId>
  72. <artifactId>junit</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-test</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <!--开思基础资料-->
  81. <dependency>
  82. <groupId>com.cath</groupId>
  83. <artifactId>cath-base</artifactId>
  84. <version>3.8.5</version>
  85. <scope>compile</scope>
  86. </dependency>
  87. <!--common-->
  88. <dependency>
  89. <groupId>com.cath</groupId>
  90. <artifactId>cath-common</artifactId>
  91. <version>3.8.5</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <!--接口-->
  95. <dependency>
  96. <groupId>com.cath</groupId>
  97. <artifactId>cath-interface</artifactId>
  98. <version>3.8.5</version>
  99. <scope>compile</scope>
  100. </dependency>
  101. <!--mes-->
  102. <dependency>
  103. <groupId>com.cath</groupId>
  104. <artifactId>cath-mes</artifactId>
  105. <version>3.8.5</version>
  106. <scope>compile</scope>
  107. </dependency>
  108. <!--set-->
  109. <dependency>
  110. <groupId>com.cath</groupId>
  111. <artifactId>cath-set</artifactId>
  112. <version>3.8.5</version>
  113. <scope>compile</scope>
  114. </dependency>
  115. <!--wms-->
  116. <dependency>
  117. <groupId>com.cath</groupId>
  118. <artifactId>cath-wms</artifactId>
  119. <version>3.8.5</version>
  120. <scope>compile</scope>
  121. </dependency>
  122. <!-- &lt;!&ndash; 孙一石增加的,需要问问他做什么的 &ndash;&gt;-->
  123. <!-- <dependency>-->
  124. <!-- <groupId>ch.qos.logback</groupId>-->
  125. <!-- <artifactId>logback-classic</artifactId>-->
  126. <!-- </dependency>-->
  127. <!-- License -->
  128. <dependency>
  129. <groupId>de.schlichtherle.truelicense</groupId>
  130. <artifactId>truelicense-core</artifactId>
  131. <version>1.33</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.alibaba</groupId>
  135. <artifactId>fastjson</artifactId>
  136. <version>1.2.44</version>
  137. </dependency>
  138. <!-- kettle 工具本地jar包加载 -->
  139. <dependency>
  140. <groupId>pentaho-kettle</groupId>
  141. <artifactId>kettle-core</artifactId>
  142. <version>9.4.0.0-343</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>pentaho-kettle</groupId>
  146. <artifactId>kettle-engine</artifactId>
  147. <version>9.4.0.0-343</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>pentaho-kettle</groupId>
  151. <artifactId>metastore</artifactId>
  152. <version>9.4.0.0-343</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.pentaho</groupId>
  156. <artifactId>pentaho-encryption-support</artifactId>
  157. <version>9.4.0.0-343</version>
  158. </dependency>
  159. <!--kettle需要用到的其它依赖-->
  160. <dependency>
  161. <groupId>org.apache.commons</groupId>
  162. <artifactId>commons-vfs2</artifactId>
  163. <version>2.7.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.google.guava</groupId>
  167. <artifactId>guava</artifactId>
  168. <version>17.0</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>commons-lang</groupId>
  172. <artifactId>commons-lang</artifactId>
  173. <version>2.6</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>commons-codec</groupId>
  177. <artifactId>commons-codec</artifactId>
  178. <version>1.15</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.jcraft</groupId>
  182. <artifactId>jsch</artifactId>
  183. <version>0.1.54</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>net.sourceforge.jexcelapi</groupId>
  187. <artifactId>jxl</artifactId>
  188. <version>2.6.12</version>
  189. </dependency>
  190. <dependency>
  191. <artifactId>janino</artifactId>
  192. <groupId>org.codehaus.janino</groupId>
  193. <version>3.0.8</version>
  194. </dependency>
  195. <dependency>
  196. <artifactId>commons-compiler</artifactId>
  197. <groupId>org.codehaus.janino</groupId>
  198. <version>3.0.8</version>
  199. </dependency>
  200. </dependencies>
  201. <build>
  202. <plugins>
  203. <plugin>
  204. <groupId>org.springframework.boot</groupId>
  205. <artifactId>spring-boot-maven-plugin</artifactId>
  206. <version>2.1.1.RELEASE</version>
  207. <configuration>
  208. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  209. </configuration>
  210. <executions>
  211. <execution>
  212. <goals>
  213. <goal>repackage</goal>
  214. </goals>
  215. </execution>
  216. </executions>
  217. </plugin>
  218. <plugin>
  219. <groupId>org.apache.maven.plugins</groupId>
  220. <artifactId>maven-war-plugin</artifactId>
  221. <version>3.1.0</version>
  222. <configuration>
  223. <failOnMissingWebXml>false</failOnMissingWebXml>
  224. <warName>${project.artifactId}</warName>
  225. </configuration>
  226. </plugin>
  227. </plugins>
  228. <finalName>${project.artifactId}</finalName>
  229. </build>
  230. </project>