|
|
<?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>dsideal</groupId>
|
|
|
<artifactId>ccDangJianExam</artifactId>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
<!--使用jdk1.8进行编译-->
|
|
|
<properties>
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
</properties>
|
|
|
|
|
|
<repositories>
|
|
|
|
|
|
</repositories>
|
|
|
|
|
|
<dependencies>
|
|
|
<!--引用本地jar包-->
|
|
|
<dependency>
|
|
|
<groupId>com.aspose</groupId>
|
|
|
<artifactId>aspose-words</artifactId>
|
|
|
<version>20.12</version>
|
|
|
<scope>system</scope> <!--system,类似provided,需要显式提供依赖的jar以后,Maven就不会在Repository中查找它-->
|
|
|
<systemPath>${project.basedir}/ExtendJar/aspose-words-20.12-jdk17-crack.jar</systemPath>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.aspose</groupId>
|
|
|
<artifactId>aspose-cells</artifactId>
|
|
|
<version>20.7</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${project.basedir}/ExtendJar/aspose-cells-20.7-crack.jar</systemPath>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.aspose</groupId>
|
|
|
<artifactId>aspose.slides</artifactId>
|
|
|
<version>19.3</version>
|
|
|
<scope>system</scope>
|
|
|
<systemPath>${project.basedir}/ExtendJar/aspose.slides-19.3.jar</systemPath>
|
|
|
</dependency>
|
|
|
<!--jfinal主框架-->
|
|
|
<dependency>
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
<artifactId>jfinal</artifactId>
|
|
|
<version>5.1.1</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
<artifactId>jfinal-undertow</artifactId>
|
|
|
<version>3.5</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
<artifactId>cos</artifactId>
|
|
|
<version>2022.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.github.icecooly</groupId>
|
|
|
<artifactId>FastHttpClient</artifactId>
|
|
|
<version>1.10</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.huaweicloud</groupId>
|
|
|
<artifactId>esdk-obs-java</artifactId>
|
|
|
<version>3.22.3.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用json库-->
|
|
|
<dependency>
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
<version>2.4</version>
|
|
|
<classifier>jdk15</classifier>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引入定时器组件-->
|
|
|
<dependency>
|
|
|
<groupId>it.sauronsoftware.cron4j</groupId>
|
|
|
<artifactId>cron4j</artifactId>
|
|
|
<version>2.2.5</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用ssh+sftp组件-->
|
|
|
<dependency>
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
<artifactId>jsch</artifactId>
|
|
|
<version>0.1.55</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- druid 数据源连接池 -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid</artifactId>
|
|
|
<version>1.2.15</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--图片缩放-->
|
|
|
<dependency>
|
|
|
<groupId>net.coobird</groupId>
|
|
|
<artifactId>thumbnailator</artifactId>
|
|
|
<version>0.4.18</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--日志logback-->
|
|
|
<dependency>
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
<version>1.4.4</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
|
|
|
<!--安装hutool-->
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
<version>5.8.11</version>
|
|
|
</dependency>
|
|
|
<!--引用fastjson-->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>2.0.20</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用poi-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi</artifactId>
|
|
|
<version>5.2.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
<version>5.2.2</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用jsoup防止xss攻击-->
|
|
|
<dependency>
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
<version>1.15.3</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引用华为云obs sdk-->
|
|
|
<!--安装这个sdk,需要看这里:
|
|
|
https://support.huaweicloud.com/devg-obs_java_sdk_doc_zh/zh-cn_topic_0142815542.html-->
|
|
|
<!--强制升级httpclient和httpcore-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
<version>4.5.13</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
<version>4.4.15</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
<version>8.0.30</version>
|
|
|
</dependency>
|
|
|
<!--引用gson-->
|
|
|
<dependency>
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
<artifactId>gson</artifactId>
|
|
|
<version>2.10</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-io</groupId>
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
<version>2.11.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-email</artifactId>
|
|
|
<version>1.5</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
<version>3.12.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.dom4j</groupId>
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
<version>2.1.3</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>redis.clients</groupId>
|
|
|
<artifactId>jedis</artifactId>
|
|
|
<version>3.8.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
<version>4.5.13</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
<version>2.19.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>de.ruedigermoeller</groupId>
|
|
|
<artifactId>fst</artifactId>
|
|
|
<version>2.43</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
<version>2.19.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.web3j/core -->
|
|
|
<dependency>
|
|
|
<groupId>org.web3j</groupId>
|
|
|
<artifactId>core</artifactId>
|
|
|
<version>5.0.0</version>
|
|
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
|
|
|
<dependency>
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
<version>4.10.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
<version>1.7.36</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.opengauss/opengauss-jdbc -->
|
|
|
<!-- <dependency>-->
|
|
|
<!-- <groupId>org.opengauss</groupId>-->
|
|
|
<!-- <artifactId>opengauss-jdbc</artifactId>-->
|
|
|
<!-- <version>5.0.0</version>-->
|
|
|
<!-- </dependency>-->
|
|
|
<dependency>
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
<version>42.6.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--引入钉钉SDK-->
|
|
|
<dependency>
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
<artifactId>dingtalk</artifactId>
|
|
|
<version>2.0.18</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
|
|
|
<version>2.0.0</version>
|
|
|
</dependency>
|
|
|
<!--引入kafka-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
<artifactId>kafka-clients</artifactId>
|
|
|
<version>3.4.0</version>
|
|
|
</dependency>
|
|
|
<!--手机号生成器-->
|
|
|
<!--https://github.com/binarywang/java-testdata-generator-->
|
|
|
<dependency>
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
<artifactId>java-testdata-generator</artifactId>
|
|
|
<version>1.1.2</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<version>3.6.1</version>
|
|
|
<configuration>
|
|
|
<source>1.8</source>
|
|
|
<target>1.8</target>
|
|
|
<encoding>UTF-8</encoding>
|
|
|
<!-- java8 保留参数名编译参数 -->
|
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
</project> |