Няма описание

pom.xml 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lframework</groupId>
  12. <artifactId>xingyun</artifactId>
  13. <name>【${project.artifactId}】星云ERP</name>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <modelVersion>4.0.0</modelVersion>
  16. <packaging>pom</packaging>
  17. <modules>
  18. <module>xingyun-core</module>
  19. <module>xingyun-api</module>
  20. <module>xingyun-basedata</module>
  21. <module>xingyun-sc</module>
  22. <module>xingyun-chart</module>
  23. <module>xingyun-settle</module>
  24. <module>xingyun-template</module>
  25. <module>xingyun-template-core</module>
  26. <module>cloud/xingyun-cloud-api</module>
  27. <module>xingyun-common</module>
  28. <module>cloud/xingyun-cloud-gateway</module>
  29. </modules>
  30. <properties>
  31. <maven.compiler.source>8</maven.compiler.source>
  32. <maven.compiler.target>8</maven.compiler.target>
  33. <xingyun.version>1.0.0-SNAPSHOT</xingyun.version>
  34. <jugg.version>3.1.3</jugg.version>
  35. </properties>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>com.lframework</groupId>
  40. <artifactId>parent</artifactId>
  41. <version>${jugg.version}</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.lframework</groupId>
  47. <artifactId>xingyun-basedata</artifactId>
  48. <version>${xingyun.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.lframework</groupId>
  52. <artifactId>xingyun-common</artifactId>
  53. <version>${xingyun.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.lframework</groupId>
  57. <artifactId>xingyun-sc</artifactId>
  58. <version>${xingyun.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.lframework</groupId>
  62. <artifactId>xingyun-chart</artifactId>
  63. <version>${xingyun.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.lframework</groupId>
  67. <artifactId>xingyun-template</artifactId>
  68. <version>${xingyun.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.lframework</groupId>
  72. <artifactId>xingyun-template-core</artifactId>
  73. <version>${xingyun.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.lframework</groupId>
  77. <artifactId>xingyun-settle</artifactId>
  78. <version>${xingyun.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.lframework</groupId>
  82. <artifactId>xingyun-core</artifactId>
  83. <version>${xingyun.version}</version>
  84. </dependency>
  85. </dependencies>
  86. </dependencyManagement>
  87. <build>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-compiler-plugin</artifactId>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. <!-- 指定仓库 -->
  96. <repositories>
  97. <repository>
  98. <id>ali-public</id>
  99. <name>阿里云public库</name>
  100. <url>https://maven.aliyun.com/repository/public</url>
  101. <layout>default</layout>
  102. </repository>
  103. <repository>
  104. <id>ali-central</id>
  105. <name>阿里云central库</name>
  106. <url>https://maven.aliyun.com/repository/central</url>
  107. </repository>
  108. <repository>
  109. <id>ali-central-old</id>
  110. <name>阿里云central库old</name>
  111. <url>https://maven.aliyun.com/nexus/content/groups/public</url>
  112. </repository>
  113. </repositories>
  114. <profiles>
  115. <profile>
  116. <id>dev</id>
  117. <activation>
  118. <activeByDefault>true</activeByDefault>
  119. </activation>
  120. <properties>
  121. <profiles-active>dev</profiles-active>
  122. <discovery-server>127.0.0.1:10000</discovery-server>
  123. </properties>
  124. </profile>
  125. <profile>
  126. <id>test</id>
  127. <properties>
  128. <profiles-active>test</profiles-active>
  129. <discovery-server>127.0.0.1:10000</discovery-server>
  130. </properties>
  131. </profile>
  132. <profile>
  133. <id>prod</id>
  134. <properties>
  135. <profiles-active>prod</profiles-active>
  136. <discovery-server>127.0.0.1:10000</discovery-server>
  137. </properties>
  138. </profile>
  139. </profiles>
  140. </project>