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.
117 lines
3.8 KiB
117 lines
3.8 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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>com.ccic.safeliab</groupId> |
|
<artifactId>report</artifactId> |
|
<version>1.0</version> |
|
|
|
<parent> |
|
<groupId>com.ccic.safeliab</groupId> |
|
<artifactId>cloud-dependencies</artifactId> |
|
<version>1.0</version> |
|
</parent> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.yaml</groupId> |
|
<artifactId>snakeyaml</artifactId> |
|
<version>2.3-ccic</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.httpcomponents</groupId> |
|
<artifactId>httpclient</artifactId> |
|
<version>4.4.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.lowagie</groupId> |
|
<artifactId>itext</artifactId> |
|
<version>2.1.7</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>2.1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-lang</groupId> |
|
<artifactId>commons-lang</artifactId> |
|
<version>2.6</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.owasp.esapi</groupId> |
|
<artifactId>esapi</artifactId> |
|
<version>2.2.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.jsoup</groupId> |
|
<artifactId>jsoup</artifactId> |
|
<version>1.9.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>xml-apis</groupId> |
|
<artifactId>xml-apis</artifactId> |
|
<version>1.4.01</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.bes.appserv-web</groupId> |
|
<artifactId>bes-lite-spring-boot-2.x-starter</artifactId> |
|
<version>9.5.2.008</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<scope>provided</scope> |
|
<version>1.18.10</version> |
|
</dependency> |
|
|
|
<!--nacos-config--> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
|
</dependency> |
|
<!--nacos-discovery--> |
|
<dependency> |
|
<groupId>com.alibaba.cloud</groupId> |
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|