168 lines
6.3 KiB
XML
168 lines
6.3 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<groupId>com.nflg</groupId>
|
||
<artifactId>nflg-mobilebroken</artifactId>
|
||
<version>1.0.0-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>nflg-mobilebroken-admin</artifactId>
|
||
<version>1.0.0-SNAPSHOT</version>
|
||
<name>服务-管理端服务</name>
|
||
<description>管理端的功能接口</description>
|
||
<packaging>jar</packaging>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.nflg</groupId>
|
||
<artifactId>nflg-mobilebroken-common</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.nflg</groupId>
|
||
<artifactId>nflg-mobilebroken-starter</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter</artifactId>
|
||
</dependency>
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.alibaba.cloud</groupId>-->
|
||
<!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
|
||
<!-- </dependency>-->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.nflg</groupId>
|
||
<artifactId>nflg-mobilebroken-repository</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-validation</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>org.xhtmlrenderer</groupId>-->
|
||
<!-- <artifactId>flying-saucer-pdf</artifactId>-->
|
||
<!-- <version>9.1.20</version>-->
|
||
<!-- </dependency>-->
|
||
<dependency>
|
||
<groupId>ognl</groupId>
|
||
<artifactId>ognl</artifactId>
|
||
<version>3.4.3</version>
|
||
</dependency>
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.itextpdf</groupId>-->
|
||
<!-- <artifactId>itext7-core</artifactId>-->
|
||
<!-- <version>7.2.3</version>-->
|
||
<!-- </dependency>-->
|
||
<!-- html转pdf,包含类似于jsoup依赖的操作html文档的依赖 -->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>com.itextpdf</groupId>-->
|
||
<!-- <artifactId>html2pdf</artifactId>-->
|
||
<!-- <version>4.0.3</version>-->
|
||
<!-- </dependency>-->
|
||
<dependency>
|
||
<groupId>org.xhtmlrenderer</groupId>
|
||
<artifactId>flying-saucer-pdf</artifactId>
|
||
<version>9.3.1</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>bcprov-jdk14</artifactId>
|
||
<groupId>org.bouncycastle</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<!-- iText (required by Flying Saucer) -->
|
||
<dependency>
|
||
<groupId>com.itextpdf</groupId>
|
||
<artifactId>itextpdf</artifactId>
|
||
<version>5.5.13.3</version>
|
||
</dependency>
|
||
<!-- Additional iText Asian fonts for Chinese support -->
|
||
<dependency>
|
||
<groupId>com.itextpdf</groupId>
|
||
<artifactId>itext-asian</artifactId>
|
||
<version>5.2.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.dev33</groupId>
|
||
<artifactId>sa-token-spring-boot-starter</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.dev33</groupId>
|
||
<artifactId>sa-token-redis-jackson</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-pool2</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.promeg</groupId>
|
||
<artifactId>tinypinyin</artifactId>
|
||
<version>2.0.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>5.2.3</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>alimt20181012</artifactId>
|
||
<version>1.5.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>tea-openapi</artifactId>
|
||
<version>0.3.9</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>dom4j</artifactId>
|
||
<groupId>org.dom4j</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<configuration>
|
||
<source>11</source>
|
||
<target>11</target>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project>
|