pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. <modelVersion>4.0.0</modelVersion>
  6. <modules>
  7. <module>lift-demo-service</module>
  8. <module>lift-business-service</module>
  9. <module>lift-enterprise-service</module>
  10. <module>lift-system-service</module>
  11. <module>lift-common</module>
  12. <module>lift-batch-service</module>
  13. <module>lift-quan-service</module>
  14. <module>lift-push</module>
  15. <module>lift-iot</module>
  16. </modules>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>2.1.4.RELEASE</version>
  21. <relativePath/> <!-- lookup parent from repository -->
  22. </parent>
  23. <groupId>cn.com.ty</groupId>
  24. <artifactId>lift-server</artifactId>
  25. <version>1.0-SNAPSHOT</version>
  26. <packaging>pom</packaging>
  27. <properties>
  28. <xwy.version>1.0-SNAPSHOT</xwy.version>
  29. </properties>
  30. <repositories>
  31. <repository>
  32. <id>private-store</id>
  33. <url>http://122.51.162.43:8081/repository/private-store/</url>
  34. </repository>
  35. </repositories>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>cn.com.xwy</groupId>
  40. <artifactId>xwy-spring-boot</artifactId>
  41. <version>${xwy.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.com.xwy</groupId>
  45. <artifactId>xwy-cloud-dependencies</artifactId>
  46. <version>${xwy.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.com.xwy</groupId>
  50. <artifactId>xwy-dependencies</artifactId>
  51. <version>${xwy.version}</version>
  52. <scope>import</scope>
  53. <type>pom</type>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.com.xwy</groupId>
  57. <artifactId>xwy-util</artifactId>
  58. <version>${xwy.version}</version>
  59. </dependency>
  60. </dependencies>
  61. </dependencyManagement>
  62. <dependencies>
  63. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  64. <dependency>
  65. <groupId>cn.hutool</groupId>
  66. <artifactId>hutool-all</artifactId>
  67. <version>5.1.3</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  70. <dependency>
  71. <groupId>org.apache.poi</groupId>
  72. <artifactId>poi-ooxml</artifactId>
  73. <version>4.1.1</version>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <configuration>
  82. <source>1.8</source>
  83. <target>1.8</target>
  84. </configuration>
  85. </plugin>
  86. </plugins>
  87. <resources>
  88. <resource>
  89. <filtering>true</filtering>
  90. <directory>src/main/java</directory>
  91. </resource>
  92. <resource>
  93. <filtering>true</filtering>
  94. <directory>src/main/resources</directory>
  95. <includes>
  96. <include>**/*.*</include>
  97. </includes>
  98. </resource>
  99. </resources>
  100. </build>
  101. </project>