给迷你服务去掉一些依赖,缩减打包大小

This commit is contained in:
thinkgem
2025-10-15 21:13:38 +08:00
parent 6a41db0efc
commit 9e33b5c894
7 changed files with 85 additions and 56 deletions

View File

@@ -43,7 +43,66 @@
<groupId>com.jeesite</groupId>
<artifactId>jeesite-framework</artifactId>
<version>${project.parent.version}</version>
<exclusions>
<exclusion>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</exclusion>
<exclusion>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jdbc</artifactId>
</exclusion>
<exclusion>
<groupId>com.atomikos</groupId>
<artifactId>transactions-jta</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.poi</groupId>
<artifactId>poi-scratchpad</artifactId>
</exclusion>
<exclusion>
<groupId>net.sf.jmimemagic</groupId>
<artifactId>jmimemagic</artifactId>
</exclusion>
<exclusion>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
</exclusion>
<exclusion>
<groupId>com.belerweb</groupId>
<artifactId>pinyin4j</artifactId>
</exclusion>
<exclusion>
<groupId>com.bladejava</groupId>
<artifactId>blade-patchca</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>