188 lines
6.4 KiB
XML
188 lines
6.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>com.bonus</groupId>
|
|
<artifactId>modules</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>modules-file</artifactId>
|
|
|
|
<description>
|
|
modules-file文件模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
<!--中创内置tomcat-->
|
|
<dependency>
|
|
<groupId>com.cvicse.embedded</groupId>
|
|
<artifactId>spring-boot-starter-inforsuite</artifactId>
|
|
<version>10.0.2.5</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/spring-boot-starter-inforsuite-10.0.2.5.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>aspose</groupId>
|
|
<artifactId>aspose-words</artifactId>
|
|
<version>15.8.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/aspose-words-15.8.0-jdk16.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>aspose</groupId>
|
|
<artifactId>aspose-slide</artifactId>
|
|
<version>19.6</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/aspose-slides-19.6.jar</systemPath>
|
|
</dependency>
|
|
<!--图片压缩-->
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>0.4.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
</dependency>
|
|
<!--xlsx或xls转pdf-->
|
|
<dependency>
|
|
<groupId>aspose</groupId>
|
|
<artifactId>aspose-cells</artifactId>
|
|
<version>8.5.2</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/aspose-cells-8.5.2.jar</systemPath>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Swagger UI -->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${swagger.fox.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Mysql Connector -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Common DataSource -->
|
|
<dependency>
|
|
<groupId>com.bonus</groupId>
|
|
<artifactId>common-datasource</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Common DataSource -->
|
|
<dependency>
|
|
<groupId>com.bonus</groupId>
|
|
<artifactId>common-core</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Common DataScope -->
|
|
<dependency>
|
|
<groupId>com.bonus</groupId>
|
|
<artifactId>common-datascope</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Common Log -->
|
|
<dependency>
|
|
<groupId>com.bonus</groupId>
|
|
<artifactId>common-log</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Common Swagger -->
|
|
<dependency>
|
|
<groupId>com.bonus</groupId>
|
|
<artifactId>common-swagger</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>0.4.8</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
</dependency>
|
|
|
|
<!--jackson mapper-->
|
|
<dependency>
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
<version>1.9.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dm</groupId>
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/DmJdbcDriver18.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>2.6.2</version>
|
|
<configuration>
|
|
<includeSystemScope>true</includeSystemScope>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |