pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>private-store</id>
  33. <url>http://122.51.162.43:8081/repository/private-store/</url>
  34. </repository>
  35. </repositories>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>cn.com.xwy</groupId>
  40. <artifactId>xwy-spring-boot</artifactId>
  41. <version>${xwy.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.com.xwy</groupId>
  45. <artifactId>xwy-cloud-dependencies</artifactId>
  46. <version>${xwy.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.com.xwy</groupId>
  50. <artifactId>xwy-dependencies</artifactId>
  51. <version>${xwy.version}</version>
  52. <scope>import</scope>
  53. <type>pom</type>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.com.xwy</groupId>
  57. <artifactId>xwy-util</artifactId>
  58. <version>${xwy.version}</version>
  59. </dependency>
  60. </dependencies>
  61. </dependencyManagement>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-compiler-plugin</artifactId>
  67. <configuration>
  68. <source>1.8</source>
  69. <target>1.8</target>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. <resources>
  74. <resource>
  75. <filtering>true</filtering>
  76. <directory>src/main/java</directory>
  77. </resource>
  78. <resource>
  79. <filtering>true</filtering>
  80. <directory>src/main/resources</directory>
  81. <includes>
  82. <include>**/*.*</include>
  83. </includes>
  84. </resource>
  85. </resources>
  86. </build>
  87. </project>