pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.aizuda</groupId>
  6. <artifactId>aizuda-framework</artifactId>
  7. <version>${revision}</version>
  8. <packaging>pom</packaging>
  9. <name>aizuda-framework</name>
  10. <description>低代码组件化开发平台</description>
  11. <modules>
  12. <module>aizuda-core</module>
  13. <module>aizuda-generator</module>
  14. <module>aizuda-service-parent</module>
  15. </modules>
  16. <parent>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-parent</artifactId>
  19. <version>3.3.0</version>
  20. <relativePath/>
  21. </parent>
  22. <properties>
  23. <revision>1.0.2</revision>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  26. <java.version>17</java.version>
  27. <mybatisplus.version>3.5.9</mybatisplus.version>
  28. <kisso.version>3.9.3</kisso.version>
  29. <postgresql.version>42.7.3</postgresql.version>
  30. <skipTests>true</skipTests>
  31. </properties>
  32. <dependencyManagement>
  33. <dependencies>
  34. <dependency>
  35. <groupId>com.aizuda</groupId>
  36. <artifactId>aizuda-core</artifactId>
  37. <version>${revision}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springdoc</groupId>
  41. <artifactId>springdoc-openapi-starter-common</artifactId>
  42. <version>2.5.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>jakarta.servlet</groupId>
  46. <artifactId>jakarta.servlet-api</artifactId>
  47. <version>6.1.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.jodd</groupId>
  51. <artifactId>jodd-bean</artifactId>
  52. <version>5.1.6</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>commons-io</groupId>
  56. <artifactId>commons-io</artifactId>
  57. <version>2.16.1</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-collections</groupId>
  61. <artifactId>commons-collections</artifactId>
  62. <version>3.2.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.commons</groupId>
  66. <artifactId>commons-lang3</artifactId>
  67. <version>3.14.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.lmax</groupId>
  71. <artifactId>disruptor</artifactId>
  72. <version>3.4.4</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>kisso</artifactId>
  77. <version>${kisso.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.baomidou</groupId>
  81. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  82. <version>${mybatisplus.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus-jsqlparser</artifactId>
  87. <version>${mybatisplus.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.baomidou</groupId>
  91. <artifactId>mybatis-plus-generator</artifactId>
  92. <version>${mybatisplus.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.baomidou</groupId>
  96. <artifactId>mybatis-plus-core</artifactId>
  97. <version>${mybatisplus.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.baomidou</groupId>
  101. <artifactId>mybatis-plus-annotation</artifactId>
  102. <version>${mybatisplus.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.baomidou</groupId>
  106. <artifactId>mybatis-plus-extension</artifactId>
  107. <version>${mybatisplus.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.postgresql</groupId>
  111. <artifactId>postgresql</artifactId>
  112. <version>${postgresql.version}</version>
  113. </dependency>
  114. <!-- 爱组搭 相关依赖 -->
  115. <dependency>
  116. <groupId>com.aizuda</groupId>
  117. <artifactId>aizuda-toolkit</artifactId>
  118. <version>1.0.0</version>
  119. </dependency>
  120. </dependencies>
  121. </dependencyManagement>
  122. <dependencies>
  123. <dependency>
  124. <groupId>org.assertj</groupId>
  125. <artifactId>assertj-core</artifactId>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-starter-log4j2</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-web</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-starter-jdbc</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.projectlombok</groupId>
  142. <artifactId>lombok</artifactId>
  143. <scope>provided</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-starter-test</artifactId>
  148. <scope>test</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>junit</groupId>
  152. <artifactId>junit</artifactId>
  153. <scope>test</scope>
  154. </dependency>
  155. </dependencies>
  156. <repositories>
  157. <repository>
  158. <id>aliyun</id>
  159. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  160. </repository>
  161. <repository>
  162. <id>oss-public</id>
  163. <url>https://oss.sonatype.org/content/repositories/public</url>
  164. </repository>
  165. <repository>
  166. <id>snapshot</id>
  167. <name>mp-snapshot</name>
  168. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  169. <snapshots>
  170. <enabled>true</enabled>
  171. </snapshots>
  172. </repository>
  173. </repositories>
  174. <build>
  175. <plugins>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-compiler-plugin</artifactId>
  179. <version>3.13.0</version>
  180. <configuration>
  181. <compilerArgument>-Xlint:unchecked</compilerArgument>
  182. <compilerArgument>-Xlint:deprecation</compilerArgument>
  183. <source>${java.version}</source>
  184. <target>${java.version}</target>
  185. </configuration>
  186. </plugin>
  187. <plugin>
  188. <groupId>org.codehaus.mojo</groupId>
  189. <artifactId>flatten-maven-plugin</artifactId>
  190. <version>1.5.0</version>
  191. <executions>
  192. <execution>
  193. <id>flatten</id>
  194. <phase>process-resources</phase>
  195. <goals>
  196. <goal>flatten</goal>
  197. </goals>
  198. </execution>
  199. <execution>
  200. <id>flatten.clean</id>
  201. <phase>clean</phase>
  202. <goals>
  203. <goal>clean</goal>
  204. </goals>
  205. </execution>
  206. </executions>
  207. <inherited>true</inherited>
  208. <configuration>
  209. <updatePomFile>true</updatePomFile>
  210. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  211. </configuration>
  212. </plugin>
  213. </plugins>
  214. </build>
  215. </project>