pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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-web</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>pentaho-kettle</groupId>
  15. <artifactId>kettle-core</artifactId>
  16. <version>4.1.0</version>
  17. <!--<scope>system</scope>-->
  18. <scope>compile</scope>
  19. <!--<systemPath>${project.basedir}/lib/kettle-core-4.1.0.jar</systemPath>-->
  20. </dependency>
  21. <dependency>
  22. <groupId>pentaho-kettle</groupId>
  23. <artifactId>kettle-vfs</artifactId>
  24. <version>20100924</version>
  25. <!--<scope>system</scope>-->
  26. <scope>compile</scope>
  27. <!--<systemPath>${project.basedir}/lib/kettle-vfs-20100924.jar</systemPath>-->
  28. </dependency>
  29. <dependency>
  30. <groupId>pentaho-kettle</groupId>
  31. <artifactId>aggdesigner-algorithm</artifactId>
  32. <version>5.1.5</version>
  33. <!--<scope>system</scope>-->
  34. <scope>compile</scope>
  35. <!--<systemPath>${project.basedir}/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar</systemPath>-->
  36. </dependency>
  37. <dependency>
  38. <groupId>com.liangjian</groupId>
  39. <artifactId>member-common</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.liangjian</groupId>
  43. <artifactId>member-services</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.liangjian</groupId>
  47. <artifactId>member-weixin-service</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. <configuration>
  56. <!--<mainClass>com.liangjian.dataplatform.DataplatformApplication</mainClass>-->
  57. </configuration>
  58. <dependencies>
  59. <!-- spring热部署 -->
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>springloaded</artifactId>
  63. <version>1.2.8.RELEASE</version>
  64. </dependency>
  65. </dependencies>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>