pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. <properties>
  13. <!--<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>-->
  14. <!--<spring-cloud.version>Greenwich.SR2</spring-cloud.version>-->
  15. <spring-cloud.version>Hoxton.SR1</spring-cloud.version>
  16. </properties>
  17. <dependencyManagement>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-dependencies</artifactId>
  22. <version>${spring-cloud.version}</version>
  23. <type>pom</type>
  24. <scope>import</scope>
  25. </dependency>
  26. </dependencies>
  27. </dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>pentaho-kettle</groupId>
  35. <artifactId>kettle-core</artifactId>
  36. <version>4.1.0</version>
  37. <!--<scope>system</scope>-->
  38. <scope>compile</scope>
  39. <!--<systemPath>${project.basedir}/lib/kettle-core-4.1.0.jar</systemPath>-->
  40. </dependency>
  41. <dependency>
  42. <groupId>pentaho-kettle</groupId>
  43. <artifactId>kettle-vfs</artifactId>
  44. <version>20100924</version>
  45. <!--<scope>system</scope>-->
  46. <scope>compile</scope>
  47. <!--<systemPath>${project.basedir}/lib/kettle-vfs-20100924.jar</systemPath>-->
  48. </dependency>
  49. <dependency>
  50. <groupId>pentaho-kettle</groupId>
  51. <artifactId>aggdesigner-algorithm</artifactId>
  52. <version>5.1.5</version>
  53. <!--<scope>system</scope>-->
  54. <scope>compile</scope>
  55. <!--<systemPath>${project.basedir}/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar</systemPath>-->
  56. </dependency>
  57. <dependency>
  58. <groupId>com.liangjian</groupId>
  59. <artifactId>member-common</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.liangjian</groupId>
  63. <artifactId>member-services</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.liangjian</groupId>
  67. <artifactId>member-weixin-service</artifactId>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. <configuration>
  76. <!--<mainClass>com.liangjian.dataplatform.DataplatformApplication</mainClass>-->
  77. </configuration>
  78. <dependencies>
  79. <!-- spring热部署 -->
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>springloaded</artifactId>
  83. <version>1.2.8.RELEASE</version>
  84. </dependency>
  85. </dependencies>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>