You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
229 lines
8.7 KiB
229 lines
8.7 KiB
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<parent> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>hzims-service</artifactId> |
|
<version>4.0.0-SNAPSHOT</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
<artifactId>hzims-ticket</artifactId> |
|
<packaging>jar</packaging> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<!-- <poi.version>3.17</poi.version>--> |
|
<documents4j.version>1.0.3</documents4j.version> |
|
<swagger-bootstrap-ui.version>1.9.6</swagger-bootstrap-ui.version> |
|
<!--特定版本--> |
|
<poi.version>4.1.2</poi.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-common</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-system-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-flow-api</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>hzims-operational-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>ticket-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>common-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>message-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>equipment-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.hnac.hzims</groupId> |
|
<artifactId>middle-api</artifactId> |
|
</dependency> |
|
|
|
<!--转pdf--> |
|
<dependency> |
|
<groupId>com.documents4j</groupId> |
|
<artifactId>documents4j-local</artifactId> |
|
<version>${documents4j.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.documents4j</groupId> |
|
<artifactId>documents4j-transformer-msoffice-word</artifactId> |
|
<version>${documents4j.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.documents4j</groupId> |
|
<artifactId>documents4j-UTIL-ALL</artifactId> |
|
<version>${documents4j.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.itextpdf</groupId> |
|
<artifactId>itextpdf</artifactId> |
|
<version>5.5.10</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.itextpdf</groupId> |
|
<artifactId>itext-asian</artifactId> |
|
<version>5.2.0</version> |
|
</dependency> |
|
<!--excel转换为pdf 通过https://repo.e-iceblue.cn/repository/maven-public/下载jar包--> |
|
<dependency> |
|
<groupId>e-iceblue</groupId> |
|
<artifactId>spire.xls.free</artifactId> |
|
<version>3.9.1</version> |
|
</dependency> |
|
<!--easypoi--> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>${poi.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>${poi.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.hutool</groupId> |
|
<artifactId>hutool-core</artifactId> |
|
<version>5.7.16</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-collections</groupId> |
|
<artifactId>commons-collections</artifactId> |
|
<version>3.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.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>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>io.lettuce</groupId> |
|
<artifactId>lettuce-core</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.xuxueli</groupId> |
|
<artifactId>xxl-job-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.hikvision.ga</groupId> |
|
<artifactId>artemis-http-client</artifactId> |
|
<version>1.1.2</version> |
|
</dependency> |
|
<!-- ApacheHttp请求工具 Start --> |
|
<dependency> |
|
<groupId>org.apache.httpcomponents</groupId> |
|
<artifactId>httpclient</artifactId> |
|
</dependency> |
|
<!-- ApacheHttp请求工具 End --> |
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 --> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-collections4</artifactId> |
|
<version>4.4</version> |
|
</dependency> |
|
<!-- spring-boot-websocket end --> |
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-generator</artifactId> |
|
<version>3.5.5</version> |
|
</dependency> |
|
<!-- velocity 模板引擎, Mybatis Plus 代码生成器需要--> |
|
<dependency> |
|
<groupId>org.apache.velocity</groupId> |
|
<artifactId>velocity-engine-core</artifactId> |
|
<version>2.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-test</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>redis.clients</groupId> |
|
<artifactId>jedis</artifactId> |
|
</dependency> |
|
<!-- <dependency>--> |
|
<!-- <groupId>com.aliyun</groupId>--> |
|
<!-- <artifactId>aliyun-java-sdk-ecs</artifactId>--> |
|
<!-- <version>4.2.0</version>--> |
|
<!-- <scope>compile</scope>--> |
|
<!-- </dependency>--> |
|
|
|
<!--swagger-bootstrap-ui--> |
|
<!-- <dependency>--> |
|
<!-- <groupId>com.github.xiaoymin</groupId>--> |
|
<!-- <artifactId>swagger-bootstrap-ui</artifactId>--> |
|
<!-- <version>${swagger-bootstrap-ui.version}</version>--> |
|
<!-- </dependency>--> |
|
</dependencies> |
|
|
|
<repositories> |
|
<repository> |
|
<id>com.e-iceblue</id> |
|
<url>https://repo.e-iceblue.cn/repository/maven-public/</url> |
|
</repository> |
|
</repositories> |
|
<build> |
|
<finalName>${project.name}-${project.version}</finalName> |
|
<plugins> |
|
<plugin> |
|
<groupId>com.spotify</groupId> |
|
<artifactId>dockerfile-maven-plugin</artifactId> |
|
<configuration> |
|
<username>${docker.username}</username> |
|
<password>${docker.password}</password> |
|
<repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository> |
|
<tag>${project.version}</tag> |
|
<useMavenSettingsForAuth>true</useMavenSettingsForAuth> |
|
<buildArgs> |
|
<JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> |
|
</buildArgs> |
|
<skip>false</skip> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<!--设置为true,以便把本地的system的jar也包括进来--> |
|
<includeSystemScope>true</includeSystemScope> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|