pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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>powerjob</artifactId>
  7. <groupId>tech.powerjob</groupId>
  8. <version>4.3.9</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>powerjob-work</artifactId>
  12. <version>4.3.9</version>
  13. <properties>
  14. <springboot.version>2.7.18</springboot.version>
  15. <powerjob.worker.starter.version>4.3.9</powerjob.worker.starter.version>
  16. <fastjson.version>1.2.83</fastjson.version>
  17. <powerjob.official.processors.version>4.3.9</powerjob.official.processors.version>
  18. <kingbase.version>8.6.0</kingbase.version>
  19. <geotools.version>28-SNAPSHOT</geotools.version>
  20. <!-- 部署时跳过该module -->
  21. <maven.deploy.skip>true</maven.deploy.skip>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-all</artifactId>
  27. <version>5.5.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.com.kingbase</groupId>
  31. <artifactId>kingbase8</artifactId>
  32. <version>${kingbase.version}</version>
  33. </dependency>
  34. <!-- SpringBoot -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. <version>${springboot.version}</version>
  39. </dependency>
  40. <!-- <dependency>-->
  41. <!-- <groupId>org.springframework.boot</groupId>-->
  42. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  43. <!-- <version>${springboot.version}</version>-->
  44. <!-- </dependency>-->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <version>${springboot.version}</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>tech.powerjob</groupId>
  53. <artifactId>powerjob-worker-spring-boot-starter</artifactId>
  54. <version>${powerjob.worker.starter.version}</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>fastjson</artifactId>
  60. <version>${fastjson.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>tech.powerjob</groupId>
  64. <artifactId>powerjob-official-processors</artifactId>
  65. <version>${powerjob.official.processors.version}</version>
  66. </dependency>
  67. <!-- 高版本 JDK 移除了 JavaEE 的包,需要手动引入 -->
  68. <dependency>
  69. <groupId>javax.xml.bind</groupId>
  70. <artifactId>jaxb-api</artifactId>
  71. <version>2.3.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.oracle</groupId>
  75. <artifactId>ojdbc6</artifactId>
  76. <version>11.2.0.3</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.commons</groupId>
  80. <artifactId>commons-vfs2</artifactId>
  81. <version>2.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.google.guava</groupId>
  85. <artifactId>guava</artifactId>
  86. <version>21.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.owasp.encoder</groupId>
  90. <artifactId>encoder</artifactId>
  91. <version>1.2.1</version>
  92. </dependency>
  93. <!--Kettle核心包的额外依赖包-->
  94. <dependency>
  95. <groupId>commons-lang</groupId>
  96. <artifactId>commons-lang</artifactId>
  97. <version>2.4</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>javax</groupId>
  101. <artifactId>javaee-api</artifactId>
  102. <version>7.0</version>
  103. </dependency>
  104. <!--Kettle核心包的额外依赖包-->
  105. <dependency>
  106. <groupId>commons-io</groupId>
  107. <artifactId>commons-io</artifactId>
  108. <version>2.2</version>
  109. </dependency>
  110. <!--Kettle核心包的额外依赖包-->
  111. <dependency>
  112. <groupId>org.json</groupId>
  113. <artifactId>json</artifactId>
  114. <version>20180813</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>log4j</groupId>
  118. <artifactId>log4j</artifactId>
  119. <version>1.2.17</version>
  120. </dependency>
  121. <!--Kettle核心包的额外依赖包-->
  122. <dependency>
  123. <groupId>com.alibaba</groupId>
  124. <artifactId>fastjson</artifactId>
  125. <version>1.2.83</version>
  126. </dependency>
  127. <!-- https://mvnrepository.com/artifact/pentaho-kettle/kettle-core -->
  128. <!-- kettle核心包-->
  129. <dependency>
  130. <groupId>pentaho-kettle</groupId>
  131. <artifactId>kettle-core</artifactId>
  132. <version>7.1.0.32-246</version>
  133. </dependency>
  134. <!-- https://mvnrepository.com/artifact/pentaho-kettle/kettle-dbdialog -->
  135. <!-- kettle核心包-->
  136. <dependency>
  137. <groupId>pentaho-kettle</groupId>
  138. <artifactId>kettle-dbdialog</artifactId>
  139. <version>7.1.0.32-246</version>
  140. </dependency>
  141. <!-- https://mvnrepository.com/artifact/pentaho-kettle/kettle-engine -->
  142. <!-- kettle核心包-->
  143. <dependency>
  144. <groupId>pentaho-kettle</groupId>
  145. <artifactId>kettle-engine</artifactId>
  146. <version>7.1.0.32-246</version>
  147. </dependency>
  148. <!-- https://mvnrepository.com/artifact/pentaho/metastore -->
  149. <!-- kettle核心包-->
  150. <dependency>
  151. <groupId>pentaho</groupId>
  152. <artifactId>metastore</artifactId>
  153. <version>7.1.0.32-246</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>commons-codec</groupId>
  157. <artifactId>commons-codec</artifactId>
  158. <version>1.6</version>
  159. </dependency>
  160. <!--spring mysql的连接包-->
  161. <dependency>
  162. <groupId>mysql</groupId>
  163. <artifactId>mysql-connector-java</artifactId>
  164. <version>8.0.27</version>
  165. </dependency>
  166. <!--Kettle连接mysql的核心包-->
  167. <dependency>
  168. <groupId>org.gjt.mm</groupId>
  169. <artifactId>mysql-Driver</artifactId>
  170. <version>5.1.41-bin</version>
  171. </dependency>
  172. <!--Kettle连接Oracle的额外依赖-->
  173. <dependency>
  174. <groupId>net.sourceforge.jtds</groupId>
  175. <artifactId>jtds</artifactId>
  176. <version>1.3.1</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>c3p0</groupId>
  180. <artifactId>c3p0</artifactId>
  181. <version>0.9.1.2</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.dameng</groupId>
  185. <artifactId>Dm8JdbcDriver18</artifactId>
  186. <version>8.1.1.49</version>
  187. </dependency>
  188. <!-- Kettle连接人大金仓的包 -->
  189. <dependency>
  190. <groupId>cn.com.kingbase</groupId>
  191. <artifactId>kingbase8</artifactId>
  192. <version>8.6.0</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.projectlombok</groupId>
  196. <artifactId>lombok</artifactId>
  197. <version>1.16.10</version>
  198. </dependency>
  199. </dependencies>
  200. <!-- SpringBoot专用的打包插件 -->
  201. <build>
  202. <finalName>kettleKingbase</finalName>
  203. <plugins>
  204. <plugin>
  205. <groupId>org.springframework.boot</groupId>
  206. <artifactId>spring-boot-maven-plugin</artifactId>
  207. <version>${springboot.version}</version>
  208. <configuration>
  209. <mainClass>tech.powerjob.work.KettleApplication</mainClass>
  210. </configuration>
  211. <executions>
  212. <execution>
  213. <goals>
  214. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  215. </goals>
  216. </execution>
  217. </executions>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-deploy-plugin</artifactId>
  222. <configuration>
  223. <skip>true</skip>
  224. </configuration>
  225. </plugin>
  226. </plugins>
  227. </build>
  228. </project>