|
@@ -5,7 +5,7 @@
|
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>2.7.0</version>
|
|
|
+ <version>3.1.1</version>
|
|
|
<relativePath/>
|
|
|
</parent>
|
|
|
<groupId>com.aizuda</groupId>
|
|
@@ -15,27 +15,62 @@
|
|
|
<description>爱组搭低代码组件化开发平台 Spring Boot 版本</description>
|
|
|
|
|
|
<properties>
|
|
|
- <java.version>1.8</java.version>
|
|
|
+ <java.version>17</java.version>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<skipTests>true</skipTests>
|
|
|
</properties>
|
|
|
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aizuda</groupId>
|
|
|
+ <artifactId>aizuda-bom</artifactId>
|
|
|
+ <version>1.0.2</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
<artifactId>aizuda-service-parent</artifactId>
|
|
|
<version>1.0.0</version>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>jakarta.servlet</groupId>
|
|
|
+ <artifactId>jakarta.servlet-api</artifactId>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 工作流引擎 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aizuda</groupId>
|
|
|
+ <artifactId>flowlong-spring-boot-starter</artifactId>
|
|
|
+ <version>0.0.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 服务监听 -->
|
|
|
<dependency>
|
|
|
<groupId>com.aizuda</groupId>
|
|
|
<artifactId>aizuda-monitor</artifactId>
|
|
|
- <version>1.0.0</version>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!-- 文件存储 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.aizuda</groupId>
|
|
|
+ <artifactId>aizuda-oss</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
<!-- SpringBootAdmin 监控管理客户端,未使用可以删除
|
|
|
<dependency>
|
|
|
<groupId>de.codecentric</groupId>
|
|
@@ -43,16 +78,29 @@
|
|
|
<version>3.0.2</version>
|
|
|
</dependency>
|
|
|
-->
|
|
|
+
|
|
|
+ <!-- 日志 -->
|
|
|
<dependency>
|
|
|
- <groupId>org.springdoc</groupId>
|
|
|
- <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
- <version>2.1.0</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.lmax</groupId>
|
|
|
+ <artifactId>disruptor</artifactId>
|
|
|
+ <version>3.4.4</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>p6spy</groupId>
|
|
|
<artifactId>p6spy</artifactId>
|
|
|
<version>3.9.1</version>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!-- 文档 https://springdoc.org/v2/#demos -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springdoc</groupId>
|
|
|
+ <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
+ <version>2.2.0</version>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
@@ -65,6 +113,7 @@
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <version>3.2.4</version>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|