pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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>dataplatform</artifactId>
  7. <groupId>com.liangjian</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>member-common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.google.code.gson</groupId>
  15. <artifactId>gson</artifactId>
  16. <version>2.2.4</version>
  17. </dependency>
  18. <!-- oracle -->
  19. <dependency>
  20. <groupId>com.oracle</groupId>
  21. <artifactId>ojdbc14</artifactId>
  22. <version>10.2.0.2.0</version>
  23. <systemPath>${project.basedir}/lib/ojdbc14-10.2.0.2.0.jar</systemPath>
  24. <scope>system</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>fastjson</artifactId>
  29. <version>1.2.68</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>pentaho-kettle</groupId>
  33. <artifactId>kettle-core</artifactId>
  34. <version>4.1.0</version>
  35. <scope>system</scope>
  36. <systemPath>${project.basedir}/lib/kettle-core-4.1.0.jar</systemPath>
  37. </dependency>
  38. <dependency>
  39. <groupId>pentaho-kettle</groupId>
  40. <artifactId>kettle-vfs</artifactId>
  41. <version>20100924</version>
  42. <scope>system</scope>
  43. <systemPath>${project.basedir}/lib/kettle-vfs-20100924.jar</systemPath>
  44. </dependency>
  45. <dependency>
  46. <groupId>pentaho-kettle</groupId>
  47. <artifactId>aggdesigner-algorithm</artifactId>
  48. <version>5.1.5</version>
  49. <scope>system</scope>
  50. <systemPath>${project.basedir}/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar</systemPath>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.cloudera</groupId>
  54. <artifactId>ImpalaJDBC41</artifactId>
  55. <version>2.5.42</version>
  56. <scope>system</scope>
  57. <systemPath>${project.basedir}/lib/ImpalaJDBC41-2.5.42.jar</systemPath>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.thoughtworks.xstream</groupId>
  61. <artifactId>xstream</artifactId>
  62. <version>1.3.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-io</groupId>
  66. <artifactId>commons-io</artifactId>
  67. <version>2.6</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-exec</artifactId>
  72. <version>1.3</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.itextpdf</groupId>
  76. <artifactId>itextpdf</artifactId>
  77. <version>5.5.11</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.itextpdf</groupId>
  81. <artifactId>itext-asian</artifactId>
  82. <version>5.2.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.bouncycastle</groupId>
  86. <artifactId>bcprov-jdk15on</artifactId>
  87. <version>1.54</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>de.schlichtherle.truezip</groupId>
  91. <artifactId>truezip-file</artifactId>
  92. <version>7.7.10</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>de.schlichtherle.truezip</groupId>
  96. <artifactId>truezip-driver-zip</artifactId>
  97. <version>7.7.10</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.poi</groupId>
  101. <artifactId>poi</artifactId>
  102. <version>4.1.0</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.linuxense</groupId>
  106. <artifactId>javadbf</artifactId>
  107. <version>0.4.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>net.sourceforge.jexcelapi</groupId>
  111. <artifactId>jxl</artifactId>
  112. <version>2.6.12</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.scannotation</groupId>
  116. <artifactId>scannotation</artifactId>
  117. <version>1.0.3</version>
  118. <exclusions>
  119. <exclusion>
  120. <groupId>org.javassist</groupId>
  121. <artifactId>org.javassist</artifactId>
  122. <!--<version>3.12.1-GA</version>-->
  123. </exclusion>
  124. </exclusions>
  125. </dependency>
  126. </dependencies>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-install-plugin</artifactId>
  132. <version>2.5.2</version>
  133. <executions>
  134. <execution>
  135. <id>install-external</id>
  136. <phase>clean</phase>
  137. <configuration>
  138. <file>${project.basedir}/lib/kettle-core-4.1.0.jar</file>
  139. <repositoryLayout>default</repositoryLayout>
  140. <groupId>pentaho-kettle</groupId>
  141. <artifactId>kettle-core</artifactId>
  142. <version>4.1.0</version>
  143. <packaging>jar</packaging>
  144. <generatePom>true</generatePom>
  145. </configuration>
  146. <goals>
  147. <goal>install-file</goal>
  148. </goals>
  149. </execution>
  150. <execution>
  151. <id>install-external1</id>
  152. <phase>clean</phase>
  153. <configuration>
  154. <file>${project.basedir}/lib/kettle-vfs-20100924.jar</file>
  155. <repositoryLayout>default</repositoryLayout>
  156. <groupId>pentaho-kettle</groupId>
  157. <artifactId>kettle-vfs</artifactId>
  158. <version>20100924</version>
  159. <packaging>jar</packaging>
  160. <generatePom>true</generatePom>
  161. </configuration>
  162. <goals>
  163. <goal>install-file</goal>
  164. </goals>
  165. </execution>
  166. <execution>
  167. <id>install-external2</id>
  168. <phase>clean</phase>
  169. <configuration>
  170. <file>${project.basedir}/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar</file>
  171. <repositoryLayout>default</repositoryLayout>
  172. <groupId>pentaho-kettle</groupId>
  173. <artifactId>aggdesigner-algorithm</artifactId>
  174. <version>5.1.5</version>
  175. <packaging>jar</packaging>
  176. <generatePom>true</generatePom>
  177. </configuration>
  178. <goals>
  179. <goal>install-file</goal>
  180. </goals>
  181. </execution>
  182. <execution>
  183. <id>install-external3</id>
  184. <phase>clean</phase>
  185. <configuration>
  186. <file>${project.basedir}/lib/ImpalaJDBC41-2.5.42.jar</file>
  187. <repositoryLayout>default</repositoryLayout>
  188. <groupId>com.cloudera</groupId>
  189. <artifactId>ImpalaJDBC41</artifactId>
  190. <version>2.5.42</version>
  191. <packaging>jar</packaging>
  192. <generatePom>true</generatePom>
  193. </configuration>
  194. <goals>
  195. <goal>install-file</goal>
  196. </goals>
  197. </execution>
  198. </executions>
  199. </plugin>
  200. </plugins>
  201. </build>
  202. </project>