pom.xml 3.8 KB

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