pom.xml 6.6 KB

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