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.
57 lines
1.8 KiB
57 lines
1.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">
|
|
<parent>
|
|
<artifactId>ccsenscloud</artifactId>
|
|
<groupId>com.ccsens</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>util</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjrt</artifactId>
|
|
</dependency>
|
|
|
|
<!--PDF生成-->
|
|
<dependency>
|
|
<groupId>org.xhtmlrenderer</groupId>
|
|
<artifactId>flying-saucer-pdf</artifactId>
|
|
<version>9.1.19</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>5.5.13.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itext-asian</artifactId>
|
|
<version>5.2.0</version>
|
|
</dependency>
|
|
<!--生成二维码-->
|
|
<dependency>
|
|
<groupId>net.glxn.qrgen</groupId>
|
|
<artifactId>javase</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<!--阿里图像识别-->
|
|
<dependency>
|
|
<groupId>com.aliyun.api.gateway</groupId>
|
|
<artifactId>sdk-core-java</artifactId>
|
|
<version>1.1.6</version>
|
|
</dependency>
|
|
<!--发送邮件-->
|
|
<dependency>
|
|
<groupId>javax.mail</groupId>
|
|
<artifactId>mail</artifactId>
|
|
<version>1.5.0-b01</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|