pom.xml 3.8 KB

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