<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>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>han-hai-parent</artifactId>
|
|
<version>3.2.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jeecg-boot-module-system</artifactId>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun</id>
|
|
<name>aliyun Repository</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jeecg</id>
|
|
<name>jeecg Repository</name>
|
|
<url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>jeecg-system-local-api</artifactId>
|
|
</dependency>
|
|
<!-- 企业微信/钉钉 api -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework</groupId>
|
|
<artifactId>jeewx-api</artifactId>
|
|
</dependency>
|
|
<!-- 积木报表 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.jimureport</groupId>
|
|
<artifactId>jimureport-spring-boot-starter</artifactId>
|
|
<version>1.5.0-beta</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.13</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.liyiorg</groupId>
|
|
<artifactId>weixin-popular</artifactId>
|
|
<version>2.8.17</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-openfeign-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.24</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>han-hai-module-pay</artifactId>
|
|
<version>3.2.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!--语音合成-->
|
|
<dependency>
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
<artifactId>tencentcloud-speech-sdk-java</artifactId>
|
|
<version>LATEST</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.tencentcloudapi/tencentcloud-sdk-java -->
|
|
<dependency>
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
<artifactId>tencentcloud-sdk-java</artifactId>
|
|
<version>4.0.11</version>
|
|
</dependency>
|
|
|
|
<!--excel导入导出-->
|
|
<!-- 文件上传 -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpmime</artifactId>
|
|
<version>4.5.7</version>
|
|
</dependency>
|
|
<!-- JSON -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.41</version>
|
|
</dependency>
|
|
<!-- POI -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>3.16</version>
|
|
</dependency>
|
|
|
|
<!--pdf添加水印、文字、图片、印章-->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>5.5.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itext-asian</artifactId>
|
|
<version>5.2.0</version>
|
|
</dependency>
|
|
|
|
<!--pdf转图片-->
|
|
<dependency>
|
|
<groupId>org.icepdf.os</groupId>
|
|
<artifactId>icepdf-core</artifactId>
|
|
<version>6.1.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>2.8.3</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
|
|
<skip>${skip.springboot.maven}</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|