mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
65 lines
2.1 KiB
XML
65 lines
2.1 KiB
XML
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>jnpf-workflow-common</artifactId>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.jnpf</groupId>
|
||
|
<artifactId>jnpf-workflow-core</artifactId>
|
||
|
<version>1.0.0-RELEASE</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- lombok 工具类 -->
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
</dependency>
|
||
|
<!-- hutool 工具类 -->
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
<version>${hutool.version}</version>
|
||
|
</dependency>
|
||
|
<!--<dependency>
|
||
|
<groupId>org.springdoc</groupId>
|
||
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||
|
<version>${springdoc.openapi.version}</version>
|
||
|
</dependency>-->
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>boot3</id>
|
||
|
<activation>
|
||
|
<jdk>[17,)</jdk>
|
||
|
</activation>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
<profile>
|
||
|
<id>boot2</id>
|
||
|
<activation>
|
||
|
<jdk>(,17)</jdk>
|
||
|
</activation>
|
||
|
<dependencies>
|
||
|
<!--引入Knife4j的官方start包,该指南选择Spring Boot版本<3.0,开发者需要注意-->
|
||
|
<dependency>
|
||
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
<artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
</project>
|