158 lines
4.6 KiB
XML
158 lines
4.6 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">
|
|
<parent>
|
|
<artifactId>bocloud.cop</artifactId>
|
|
<groupId>com.bocloud</groupId>
|
|
<version>5.6.0-HBCL-RELEASE</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>bocloud.cop.booter</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.hibernate.validator</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
</dependency>
|
|
<!-- Spring boot Redis -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
</dependency>
|
|
<!-- 数据库连接相关依赖 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!-- Bocloud相关配置 -->
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.cop.service</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.boot.common</artifactId>
|
|
</dependency>
|
|
<!-- task相关配置 -->
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.task.scheduler</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bocloud</groupId>
|
|
<artifactId>bocloud.task.worker</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!--导出相关 开始 -->
|
|
<!--itext pdf -->
|
|
<!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>5.5.11</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itext-asian</artifactId>
|
|
<version>5.2.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.itextpdf.tool/xmlworker -->
|
|
<dependency>
|
|
<groupId>com.itextpdf.tool</groupId>
|
|
<artifactId>xmlworker</artifactId>
|
|
<version>5.5.11</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
|
|
<dependency>
|
|
<groupId>org.freemarker</groupId>
|
|
<artifactId>freemarker</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
</dependency>
|
|
<!-- table to excel tool -->
|
|
<dependency>
|
|
<groupId>me.chyxion</groupId>
|
|
<artifactId>table-to-xls</artifactId>
|
|
<version>0.0.1-RELEASE</version>
|
|
</dependency>
|
|
<!--导出相关结束 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- 构建Restful API -->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
<version>3.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.bocloud.cop.booter.Application</mainClass>
|
|
<addClasspath>true</addClasspath>
|
|
<useUniqueVersions>false</useUniqueVersions>
|
|
<classpathPrefix>libs/</classpathPrefix>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<type>jar</type>
|
|
<includeTypes>jar</includeTypes>
|
|
<includeScope>runtime</includeScope>
|
|
<outputDirectory>${project.build.directory}/libs</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |