pom.xml 3.7 KB

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