pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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. <groupId>com.zhaxd</groupId>
  5. <artifactId>kettle-scheduler</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <repositories>
  9. <repository>
  10. <id>pentaho</id>
  11. <url>http://nexus.pentaho.org/content/groups/omni/</url>
  12. </repository>
  13. </repositories>
  14. <build>
  15. <finalName>ROOT</finalName>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <version>3.5.1</version>
  21. <configuration>
  22. <source>1.8</source>
  23. <target>1.8</target>
  24. <encoding>UTF-8</encoding>
  25. </configuration>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. <properties>
  30. <java-version>1.8</java-version>
  31. <junit-version>4.12</junit-version>
  32. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  33. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  34. <org.springframework-version>4.3.1.RELEASE</org.springframework-version>
  35. <beetlsql-version>2.10.18</beetlsql-version>
  36. <mysql-connector-java-version>5.1.49</mysql-connector-java-version>
  37. <druid-version>1.0.29</druid-version>
  38. <commons-configuration.version>1.10</commons-configuration.version>
  39. <commons.fileupload-version>1.3.2</commons.fileupload-version>
  40. <commons-beanutils-core-version>1.8.3</commons-beanutils-core-version>
  41. <commons-codec-version>1.10</commons-codec-version>
  42. <json-lib-version>2.4</json-lib-version>
  43. <javax.mail-version>1.5.6</javax.mail-version>
  44. <jackson.databind-version>2.10.1</jackson.databind-version>
  45. <kettle-version>8.2.0.0-342</kettle-version>
  46. <quartz-version>2.2.1</quartz-version>
  47. <dependency.hadoop-shims-api.revision>80.2017.10.00-28</dependency.hadoop-shims-api.revision>
  48. <pentaho-big-data-plugin.version>8.0.0.0-28</pentaho-big-data-plugin.version>
  49. <pdi-osgi-bridge.version>8.0.0.0-28</pdi-osgi-bridge.version>
  50. <kafka-clients.version>0.10.2.1</kafka-clients.version>
  51. <blueprints-core.version>2.6.0</blueprints-core.version>
  52. <log4j.version>1.2.16</log4j.version>
  53. <slf4j.version>1.6.1</slf4j.version>
  54. </properties>
  55. <dependencies>
  56. <dependency>
  57. <groupId>com.oracle</groupId>
  58. <artifactId>ojdbc6</artifactId>
  59. <version>11.2.0.1.0</version>
  60. </dependency>
  61. <!-- with spring -->
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-core</artifactId>
  65. <version>${org.springframework-version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-webmvc</artifactId>
  70. <version>${org.springframework-version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-jdbc</artifactId>
  75. <version>${org.springframework-version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-aspects</artifactId>
  80. <version>${org.springframework-version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-test</artifactId>
  85. <version>${org.springframework-version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-context-support</artifactId>
  90. <version>${org.springframework-version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>javax.annotation</groupId>
  94. <artifactId>jsr250-api</artifactId>
  95. <version>1.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.ibeetl</groupId>
  99. <artifactId>beetlsql</artifactId>
  100. <version>${beetlsql-version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>mysql</groupId>
  104. <artifactId>mysql-connector-java</artifactId>
  105. <version>${mysql-connector-java-version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>druid</artifactId>
  110. <version>${druid-version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.fasterxml.jackson.core</groupId>
  114. <artifactId>jackson-databind</artifactId>
  115. <version>${jackson.databind-version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.fasterxml.jackson.core</groupId>
  119. <artifactId>jackson-core</artifactId>
  120. <version>${jackson.databind-version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-configuration</groupId>
  124. <artifactId>commons-configuration</artifactId>
  125. <version>${commons-configuration.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-fileupload</groupId>
  129. <artifactId>commons-fileupload</artifactId>
  130. <version>${commons.fileupload-version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>commons-beanutils</groupId>
  134. <artifactId>commons-beanutils-core</artifactId>
  135. <version>${commons-beanutils-core-version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>commons-codec</groupId>
  139. <artifactId>commons-codec</artifactId>
  140. <version>${commons-codec-version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>net.sf.json-lib</groupId>
  144. <artifactId>json-lib</artifactId>
  145. <version>${json-lib-version}</version>
  146. <classifier>jdk15</classifier>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.sun.mail</groupId>
  150. <artifactId>javax.mail</artifactId>
  151. <version>${javax.mail-version}</version>
  152. </dependency>
  153. <!-- with pentaho-kettle -->
  154. <dependency>
  155. <groupId>pentaho-kettle</groupId>
  156. <artifactId>kettle-core</artifactId>
  157. <version>${kettle-version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>pentaho-kettle</groupId>
  161. <artifactId>kettle-engine</artifactId>
  162. <version>${kettle-version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>pentaho-kettle</groupId>
  166. <artifactId>kettle-dbdialog</artifactId>
  167. <version>${kettle-version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.pentaho.di.plugins</groupId>
  171. <artifactId>kettle-sap-plugin-core</artifactId>
  172. <version>${kettle-version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>pentaho-kettle</groupId>
  176. <artifactId>kettle-ui-swt</artifactId>
  177. <version>${kettle-version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.pentaho</groupId>
  181. <artifactId>pentaho-hadoop-shims-api</artifactId>
  182. <version>${dependency.hadoop-shims-api.revision}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>pentaho</groupId>
  186. <artifactId>pentaho-big-data-api-jdbc</artifactId>
  187. <version>${kettle-version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>pentaho</groupId>
  191. <artifactId>pentaho-big-data-impl-cluster</artifactId>
  192. <version>${kettle-version}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>pentaho</groupId>
  196. <artifactId>pentaho-big-data-kettle-plugins-hdfs</artifactId>
  197. <version>${kettle-version}</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>pentaho</groupId>
  201. <artifactId>pentaho-big-data-kettle-plugins-formats</artifactId>
  202. <version>${kettle-version}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>pentaho</groupId>
  206. <artifactId>pentaho-big-data-impl-shim-format</artifactId>
  207. <version>${kettle-version}</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>pentaho</groupId>
  211. <artifactId>pentaho-big-data-api-cluster-service-locator</artifactId>
  212. <version>${kettle-version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>pentaho</groupId>
  216. <artifactId>pentaho-big-data-api-format</artifactId>
  217. <version>${kettle-version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>pentaho</groupId>
  221. <artifactId>pentaho-big-data-api-hbase</artifactId>
  222. <version>${kettle-version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>pentaho</groupId>
  226. <artifactId>pentaho-big-data-api-hdfs</artifactId>
  227. <version>${kettle-version}</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>pentaho</groupId>
  231. <artifactId>pentaho-big-data-api-jaas</artifactId>
  232. <version>${kettle-version}</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>pentaho</groupId>
  236. <artifactId>pentaho-big-data-api-mapreduce</artifactId>
  237. <version>${kettle-version}</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>pentaho</groupId>
  241. <artifactId>pentaho-big-data-kettle-plugins-formats-meta</artifactId>
  242. <version>${kettle-version}</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>pentaho</groupId>
  246. <artifactId>pdi-osgi-bridge-core</artifactId>
  247. <version>${pdi-osgi-bridge.version}</version>
  248. </dependency>
  249. <!--<dependency>-->
  250. <!--<groupId>pentaho</groupId>-->
  251. <!--<artifactId>pentaho-big-data-plugin</artifactId>-->
  252. <!--<version>${pentaho-big-data-plugin.version}</version>-->
  253. <!--<type>zip</type>-->
  254. <!--</dependency>-->
  255. <dependency>
  256. <groupId>pentaho</groupId>
  257. <artifactId>pentaho-platform-extensions</artifactId>
  258. <version>${kettle-version}</version>
  259. <exclusions>
  260. <exclusion>
  261. <artifactId>xbean</artifactId>
  262. <groupId>org.apache.xbean</groupId>
  263. </exclusion>
  264. </exclusions>
  265. </dependency>
  266. <dependency>
  267. <groupId>pentaho</groupId>
  268. <artifactId>pentaho-metaverse-api</artifactId>
  269. <version>${kettle-version}</version>
  270. <exclusions>
  271. <exclusion>
  272. <groupId>*</groupId>
  273. <artifactId>*</artifactId>
  274. </exclusion>
  275. </exclusions>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.apache.kafka</groupId>
  279. <artifactId>kafka-clients</artifactId>
  280. <version>${kafka-clients.version}</version>
  281. <exclusions>
  282. <exclusion>
  283. <groupId>*</groupId>
  284. <artifactId>*</artifactId>
  285. </exclusion>
  286. </exclusions>
  287. </dependency>
  288. <dependency>
  289. <groupId>pentaho</groupId>
  290. <artifactId>pentaho-metastore-locator-api</artifactId>
  291. <version>${kettle-version}</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>com.tinkerpop.blueprints</groupId>
  295. <artifactId>blueprints-core</artifactId>
  296. <version>${blueprints-core.version}</version>
  297. <exclusions>
  298. <exclusion>
  299. <groupId>*</groupId>
  300. <artifactId>*</artifactId>
  301. </exclusion>
  302. </exclusions>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.apache.hive</groupId>
  306. <artifactId>hive-jdbc</artifactId>
  307. <version>2.3.0</version>
  308. </dependency>
  309. <!--<dependency>-->
  310. <!--<groupId>org.apache.hadoop</groupId>-->
  311. <!--<artifactId>hadoop-common</artifactId>-->
  312. <!--<version>2.7.3</version>-->
  313. <!--</dependency>-->
  314. <!-- with quartz -->
  315. <dependency>
  316. <groupId>org.quartz-scheduler</groupId>
  317. <artifactId>quartz</artifactId>
  318. <version>${quartz-version}</version>
  319. </dependency>
  320. <!-- kettle plugin excel export-->
  321. <dependency>
  322. <groupId>net.sourceforge.jexcelapi</groupId>
  323. <artifactId>jxl</artifactId>
  324. <version>2.6.12</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>junit</groupId>
  328. <artifactId>junit</artifactId>
  329. <version>4.11</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>log4j</groupId>
  333. <artifactId>log4j</artifactId>
  334. <version>${log4j.version}</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>org.slf4j</groupId>
  338. <artifactId>slf4j-api</artifactId>
  339. <version>${slf4j.version}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.slf4j</groupId>
  343. <artifactId>slf4j-log4j12</artifactId>
  344. <version>${slf4j.version}</version>
  345. </dependency>
  346. </dependencies>
  347. </project>