pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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>reserved</id>
  33. <url>http://132.232.206.88:8081/repository/local</url>
  34. </repository>
  35. <repository>
  36. <id>aliyun</id>
  37. <url>http://132.232.206.88:8081/repository/aliyun</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. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-compiler-plugin</artifactId>
  71. <configuration>
  72. <source>1.8</source>
  73. <target>1.8</target>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. <resources>
  78. <resource>
  79. <filtering>true</filtering>
  80. <directory>src/main/java</directory>
  81. </resource>
  82. <resource>
  83. <filtering>true</filtering>
  84. <directory>src/main/resources</directory>
  85. <includes>
  86. <include>**/*.*</include>
  87. </includes>
  88. </resource>
  89. </resources>
  90. </build>
  91. </project>