pom.xml 3.7 KB

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