.flattened-pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>top.continew</groupId>
  7. <artifactId>continew-starter</artifactId>
  8. <version>2.12.0</version>
  9. </parent>
  10. <groupId>com.pavis</groupId>
  11. <artifactId>pavis-admin</artifactId>
  12. <version>3.7.0</version>
  13. <packaging>pom</packaging>
  14. <description>持续迭代优化的前后端分离中后台管理系统框架,开箱即用,持续提供舒适的开发体验。</description>
  15. <licenses>
  16. <license>
  17. <name>GNU LESSER GENERAL PUBLIC LICENSE</name>
  18. <url>http://www.gnu.org/licenses/lgpl.html</url>
  19. </license>
  20. </licenses>
  21. <modules>
  22. <module>pavis-webapi</module>
  23. <module>pavis-module-system</module>
  24. <module>pavis-plugin</module>
  25. <module>pavis-common</module>
  26. <module>pavis-extension</module>
  27. <module>pavis-module-aigc</module>
  28. </modules>
  29. <properties>
  30. <revision>3.7.0</revision>
  31. </properties>
  32. <dependencyManagement>
  33. <dependencies>
  34. <dependency>
  35. <groupId>com.pavis</groupId>
  36. <artifactId>pavis-webapi</artifactId>
  37. <version>3.7.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.pavis</groupId>
  41. <artifactId>pavis-module-system</artifactId>
  42. <version>3.7.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.pavis</groupId>
  46. <artifactId>pavis-module-aigc</artifactId>
  47. <version>3.7.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.pavis</groupId>
  51. <artifactId>pavis-common</artifactId>
  52. <version>3.7.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.pavis</groupId>
  56. <artifactId>pavis-plugin-schedule</artifactId>
  57. <version>3.7.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.pavis</groupId>
  61. <artifactId>pavis-plugin-open</artifactId>
  62. <version>3.7.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.pavis</groupId>
  66. <artifactId>pavis-plugin-generator</artifactId>
  67. <version>3.7.0</version>
  68. </dependency>
  69. </dependencies>
  70. </dependencyManagement>
  71. <dependencies>
  72. <dependency>
  73. <groupId>cn.hutool</groupId>
  74. <artifactId>hutool-all</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. <optional>true</optional>
  80. </dependency>
  81. </dependencies>
  82. <repositories>
  83. <repository>
  84. <id>huawei-mirror</id>
  85. <name>HuaweiCloud Mirror</name>
  86. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  87. </repository>
  88. <repository>
  89. <id>ali-mirror</id>
  90. <name>AliYun Mirror</name>
  91. <url>https://maven.aliyun.com/repository/public/</url>
  92. </repository>
  93. </repositories>
  94. <pluginRepositories>
  95. <pluginRepository>
  96. <id>huawei-mirror</id>
  97. <name>HuaweiCloud Mirror</name>
  98. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  99. </pluginRepository>
  100. <pluginRepository>
  101. <id>ali-mirror</id>
  102. <name>AliYun Mirror</name>
  103. <url>https://maven.aliyun.com/repository/public/</url>
  104. </pluginRepository>
  105. </pluginRepositories>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <artifactId>maven-compiler-plugin</artifactId>
  110. <configuration>
  111. <compilerArgument>-parameters</compilerArgument>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <artifactId>maven-surefire-plugin</artifactId>
  116. <configuration>
  117. <skip>true</skip>
  118. </configuration>
  119. </plugin>
  120. <plugin>
  121. <groupId>com.diffplug.spotless</groupId>
  122. <artifactId>spotless-maven-plugin</artifactId>
  123. <executions>
  124. <execution>
  125. <phase>compile</phase>
  126. <goals>
  127. <goal>apply</goal>
  128. </goals>
  129. </execution>
  130. </executions>
  131. <configuration>
  132. <java>
  133. <removeUnusedImports />
  134. <eclipse>
  135. <file>.style/p3c-codestyle.xml</file>
  136. </eclipse>
  137. </java>
  138. </configuration>
  139. </plugin>
  140. <plugin>
  141. <groupId>org.codehaus.mojo</groupId>
  142. <artifactId>flatten-maven-plugin</artifactId>
  143. <executions>
  144. <execution>
  145. <id>flatten</id>
  146. <phase>process-resources</phase>
  147. <goals>
  148. <goal>flatten</goal>
  149. </goals>
  150. </execution>
  151. <execution>
  152. <id>flatten-clean</id>
  153. <phase>clean</phase>
  154. <goals>
  155. <goal>clean</goal>
  156. </goals>
  157. </execution>
  158. </executions>
  159. <configuration>
  160. <updatePomFile>true</updatePomFile>
  161. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  162. </configuration>
  163. </plugin>
  164. </plugins>
  165. </build>
  166. </project>