build: sdk中的jar简化

This commit is contained in:
CaptainB 2023-11-09 21:22:10 +08:00 committed by 刘瑞斌
parent 83e9962dbc
commit 17215a686e
2 changed files with 28 additions and 26 deletions

View File

@ -122,27 +122,7 @@
<version>${commons-compress.version}</version>
</dependency>
<!-- end apache commons 相关-->
<!-- openapi -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${springdoc-openapi-ui.version}</version>
</dependency>
<!-- start http2 配置-->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-conscrypt-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-server</artifactId>
</dependency>
<!-- end http2 配置-->
<!-- easyexcel -->
<dependency>
<groupId>com.alibaba</groupId>
@ -230,12 +210,7 @@
<artifactId>minio</artifactId>
<version>${minio.version}</version>
</dependency>
<!-- jgit -->
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${jgit.version}</version>
</dependency>
<!-- otp -->
<dependency>
<groupId>com.github.bastiaanjansen</groupId>

View File

@ -133,6 +133,33 @@
<artifactId>xmindjbehaveplugin</artifactId>
<version>${xmindjbehaveplugin.version}</version>
</dependency>
<!-- openapi -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${springdoc-openapi-ui.version}</version>
</dependency>
<!-- start http2 配置-->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-conscrypt-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>http2-server</artifactId>
</dependency>
<!-- end http2 配置-->
<!-- jgit -->
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${jgit.version}</version>
</dependency>
</dependencies>
<build>