2022-06-10 16:13:01 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<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">
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>kdayun-root</artifactId>
|
|
|
|
|
<version>5.0.0</version>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.1.0.RELEASE</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>modules/kdayun-app</module>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<module>modules/kdayun-demo</module>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</modules>
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- 指明编码 在打包时候可以消除警告 Using platform encoding (GBK actually) to copy filtered
|
|
|
|
|
resources, i.e. build is platform dependent! -->
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
|
|
|
|
<!-- jdk版本 -->
|
|
|
|
|
<jdk.version>1.8</jdk.version>
|
|
|
|
|
<!-- 平台版本 -->
|
2023-11-01 16:04:47 +08:00
|
|
|
|
<base.version>5.0.232</base.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<!-- Spring 版本号 -->
|
|
|
|
|
<spring.version>5.1.2.RELEASE</spring.version>
|
|
|
|
|
|
|
|
|
|
<!-- MyBatis-Spring 版本号 -->
|
|
|
|
|
<mybatis-spring.version>1.3.0</mybatis-spring.version>
|
|
|
|
|
|
|
|
|
|
<!-- MyBatis 版本号 -->
|
|
|
|
|
<mybatis.version>3.4.6</mybatis.version>
|
|
|
|
|
|
|
|
|
|
<!-- Ojdbc6 版本号 -->
|
|
|
|
|
<ojdbc6.version>11.1.0.7.0</ojdbc6.version>
|
|
|
|
|
<!-- Ojdbc8 版本号 -->
|
|
|
|
|
<ojdbc8.version>12.2.0.1</ojdbc8.version>
|
|
|
|
|
|
|
|
|
|
<!-- MySQL Connector 版本号 -->
|
|
|
|
|
<mysql-connector.version>8.0.13</mysql-connector.version>
|
|
|
|
|
|
|
|
|
|
<!-- Druid 版本号 -->
|
|
|
|
|
<druid.version>1.1.6</druid.version>
|
|
|
|
|
|
|
|
|
|
<!-- FreeMarker 版本号 -->
|
|
|
|
|
<freemarker.version>2.3.23</freemarker.version>
|
|
|
|
|
|
|
|
|
|
<!-- Fastjson 版本号 -->
|
2022-07-20 10:41:40 +08:00
|
|
|
|
<fastjson.version>1.2.83</fastjson.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
|
|
|
|
|
<!-- Servlet API 版本号 -->
|
|
|
|
|
<servlet-api.version>3.1.0</servlet-api.version>
|
|
|
|
|
|
|
|
|
|
<!-- Commons Lang 版本号 -->
|
|
|
|
|
<commons-lang.version>3.5</commons-lang.version>
|
|
|
|
|
|
|
|
|
|
<!-- Commons IO 版本号 -->
|
|
|
|
|
<commons-io.version>2.5</commons-io.version>
|
|
|
|
|
|
|
|
|
|
<!-- Commons FileUpload 版本号 -->
|
|
|
|
|
<commons-fileupload.version>1.3.2</commons-fileupload.version>
|
|
|
|
|
|
|
|
|
|
<!-- SLF4J 版本号 -->
|
|
|
|
|
<slf4j.version>1.7.25</slf4j.version>
|
|
|
|
|
|
|
|
|
|
<!-- JUnit 版本号 -->
|
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
|
|
|
|
|
|
<!-- AspectJ 版本号(已为 JDK 1.6 所支持的最高版本) -->
|
|
|
|
|
<aspectj.version>1.8.9</aspectj.version>
|
|
|
|
|
|
|
|
|
|
<!-- Ehcache 版本号 -->
|
|
|
|
|
<ehcache.version>2.5.2</ehcache.version>
|
|
|
|
|
<ehcache-web.version>2.0.4</ehcache-web.version>
|
|
|
|
|
|
|
|
|
|
<!-- Shiro 版本号 -->
|
2022-06-10 17:31:25 +08:00
|
|
|
|
<shiro.version>1.9.0</shiro.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
|
|
|
|
|
<!-- POI 版本号 -->
|
|
|
|
|
<poi.version>3.15</poi.version>
|
|
|
|
|
|
2023-08-14 17:06:43 +08:00
|
|
|
|
<!-- kdayun-jxls 版本号(已进行改造) -->
|
|
|
|
|
<kdayun-jxls.version>2.3.4</kdayun-jxls.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
|
2023-08-14 17:06:43 +08:00
|
|
|
|
<!-- kdayun-jxls-poi 版本号(已进行改造) -->
|
|
|
|
|
<kdayun-jxls-poi.version>1.1.2</kdayun-jxls-poi.version>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<!-- kdayun-jsql版本号 -->
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<kdayun-jsql.version>1.0</kdayun-jsql.version>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<kdayun.pdf.version>1.0.0</kdayun.pdf.version>
|
|
|
|
|
<kdayun.words.version>1.0.0</kdayun.words.version>
|
|
|
|
|
<kdayun.cells.version>1.0.0</kdayun.cells.version>
|
|
|
|
|
<kdayun.slides.version>1.0.0</kdayun.slides.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
|
|
|
|
|
<!-- Kaptcha 版本号 -->
|
|
|
|
|
<kaptcha.version>2.3</kaptcha.version>
|
|
|
|
|
|
|
|
|
|
<!-- httpclient 版本号 -->
|
|
|
|
|
<httpclient.version>4.5</httpclient.version>
|
|
|
|
|
|
|
|
|
|
<!-- httpcore 版本号 -->
|
|
|
|
|
<httpcore.version>4.4.4</httpcore.version>
|
|
|
|
|
|
|
|
|
|
<!-- httpmime 版本号 -->
|
|
|
|
|
<httpmime.version>4.5</httpmime.version>
|
|
|
|
|
|
|
|
|
|
<!-- Quartz 版本号 -->
|
|
|
|
|
<quartz.version>2.2.2</quartz.version>
|
|
|
|
|
|
|
|
|
|
<!-- aliyun-java-sdk-core版本号 -->
|
|
|
|
|
<aliyun-sdk-core.version>4.2.2</aliyun-sdk-core.version>
|
|
|
|
|
<!-- aliyun-java-sdk-dysmsapi 阿里云短信服务版本号 -->
|
|
|
|
|
<aliyun-sdk-dysmsapi>1.1.0</aliyun-sdk-dysmsapi>
|
|
|
|
|
<!-- ueditor版本 -->
|
|
|
|
|
<ueditor.version>1.1.2</ueditor.version>
|
|
|
|
|
|
|
|
|
|
<!-- 工作流版本 -->
|
|
|
|
|
<batik.version>1.7</batik.version>
|
2023-06-29 15:19:44 +08:00
|
|
|
|
<workflow.version>10.0.5</workflow.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<xml-apis.version>1.3.04</xml-apis.version>
|
|
|
|
|
<org.imgscalr.version>4.2</org.imgscalr.version>
|
|
|
|
|
<org.apache.xmlgraphics.version>1.2</org.apache.xmlgraphics.version>
|
|
|
|
|
<com.vaadin>6.8.8</com.vaadin>
|
|
|
|
|
<activation.version>1.1</activation.version>
|
|
|
|
|
<joda-time.version>2.1</joda-time.version>
|
|
|
|
|
<org.vaadin.addons.version>0.10.0</org.vaadin.addons.version>
|
|
|
|
|
<com.fasterxml.jackson.core.version>2.7.4</com.fasterxml.jackson.core.version>
|
|
|
|
|
<com.fasterxml.jackson.dataformat.version>2.8.7</com.fasterxml.jackson.dataformat.version>
|
|
|
|
|
<org.restlet.ext.version>2.2.1</org.restlet.ext.version>
|
|
|
|
|
<gson.version>2.8.2</gson.version>
|
|
|
|
|
<fel.version>0.8</fel.version>
|
|
|
|
|
<javax.mail.version>1.4.7</javax.mail.version>
|
|
|
|
|
<com.esotericsoftware.reflectasm.version>1.07</com.esotericsoftware.reflectasm.version>
|
|
|
|
|
<org.htmlparser.version>2.1</org.htmlparser.version>
|
|
|
|
|
<org.xerial.version>3.19.3</org.xerial.version>
|
|
|
|
|
<jersey-client.version>1.19.4</jersey-client.version>
|
|
|
|
|
<com.google.zxing.version>2.3.0</com.google.zxing.version>
|
|
|
|
|
<cxf.version>2.7.5</cxf.version>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<xstream.version>1.4.18</xstream.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<dom4j.version>1.6.1</dom4j.version>
|
|
|
|
|
<commons-logging.version>1.1.1</commons-logging.version>
|
|
|
|
|
<axis.version>1.4</axis.version>
|
|
|
|
|
<wsdl4j.version>1.6.1</wsdl4j.version>
|
|
|
|
|
<commons-discovery>0.2</commons-discovery>
|
|
|
|
|
<jxl.version>2.6.10</jxl.version>
|
|
|
|
|
<javaGeom.version>0.11.1</javaGeom.version>
|
|
|
|
|
<json.version>20160810</json.version>
|
|
|
|
|
<commons-discovery.version>0.5</commons-discovery.version>
|
|
|
|
|
<groovy.version>2.4.12</groovy.version>
|
|
|
|
|
<univocity-parsers.version>2.5.8</univocity-parsers.version>
|
|
|
|
|
<commons-compress.version>1.4.1</commons-compress.version>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<guava.version>30.0-jre</guava.version>
|
|
|
|
|
<log4j.version>2.17.2</log4j.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<jedis.version>2.9.0</jedis.version>
|
|
|
|
|
<shiro-redis.version>2.4.2-RELEASE</shiro-redis.version>
|
|
|
|
|
<org.springframework.data.version>1.6.0.RELEASE</org.springframework.data.version>
|
|
|
|
|
<reflections.version>0.9.10</reflections.version>
|
|
|
|
|
<snack3.version>3.1.6</snack3.version>
|
|
|
|
|
<thumbnailator.version>0.4.8</thumbnailator.version>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<bingoohuang.patchca.version>0.0.1</bingoohuang.patchca.version>
|
|
|
|
|
<commons-collections.version>3.2.1</commons-collections.version>
|
2023-06-30 14:30:20 +08:00
|
|
|
|
<jackson.version>2.12.4</jackson.version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</properties>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${jdk.version}</source>
|
|
|
|
|
<target>${jdk.version}</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- web -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<!--去掉logback配置 -->
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
<exclusions>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- spring security -->
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>-->
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
|
</dependency>-->
|
|
|
|
|
<!-- spring aop -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
</dependency>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<!-- 引入log4j2依赖
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
-->
|
2022-04-26 09:16:56 +08:00
|
|
|
|
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-api</artifactId>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<version>${log4j.version}</version>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<version>${log4j.version}</version>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<version>${log4j.version}</version>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.3.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.lmax</groupId>
|
|
|
|
|
<artifactId>disruptor</artifactId>
|
|
|
|
|
<version>3.4.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
<artifactId>mybatis-spring</artifactId>
|
|
|
|
|
<version>${mybatis-spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
|
<version>${mybatis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle</groupId>
|
|
|
|
|
<artifactId>ojdbc6</artifactId>
|
|
|
|
|
<version>${ojdbc6.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
|
<artifactId>sqljdbc4</artifactId>
|
|
|
|
|
<version>4.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.jtds</groupId>
|
|
|
|
|
<artifactId>jtds</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.1.24</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId>
|
|
|
|
|
<version>${druid.version}</version> <exclusions> <exclusion> <groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>jconsole</artifactId> </exclusion> <exclusion> <groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>tools</artifactId> </exclusion> </exclusions> </dependency> -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
|
<version>${commons-fileupload.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-core</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
<!-- 排除以下 JAR 包 -->
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons.commons-beanutils</groupId>
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-web</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-spring</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-quartz</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.opensymphony.quartz</groupId>
|
|
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>kdayun-jxls</artifactId>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<version>${kdayun-jxls.version}</version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>commons.commons-beanutils</groupId>
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
</exclusion>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
</exclusion>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>kdayun-jxls-poi</artifactId>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<version>${kdayun-jxls-poi.version}</version>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.kaptcha</groupId>
|
|
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
|
|
<version>${kaptcha.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 工作流 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-engine</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-spring</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-dbcp</artifactId>
|
|
|
|
|
<groupId>commons-dbcp</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-bpmn-model</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-bpmn-converter</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-common-rest</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-rest</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-explorer</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-image-generator</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-json-converter</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-modeler</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun.workflow</groupId>
|
|
|
|
|
<artifactId>workflow-process-validation</artifactId>
|
|
|
|
|
<version>${workflow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
</exclusion>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 进行图片裁剪的工具类 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>math.geom2d</groupId>
|
|
|
|
|
<artifactId>javaGeom</artifactId>
|
|
|
|
|
<version>${javaGeom.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.imgscalr</groupId>
|
|
|
|
|
<artifactId>imgscalr-lib</artifactId>
|
|
|
|
|
<version>${org.imgscalr.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-smile</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-csv</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 时间处理类别 -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
|
<version>${activation.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
|
|
|
<artifactId>xmlgraphics-commons</artifactId>
|
|
|
|
|
<version>${org.apache.xmlgraphics.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin</artifactId>
|
|
|
|
|
<version>${com.vaadin}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
|
<artifactId>xml-apis-ext</artifactId>
|
|
|
|
|
<version>${xml-apis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.restlet.jee</groupId>
|
|
|
|
|
<artifactId>org.restlet.ext.fileupload</artifactId>
|
|
|
|
|
<version>${org.restlet.ext.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.restlet.jee</groupId>
|
|
|
|
|
<artifactId>org.restlet</artifactId>
|
|
|
|
|
<version>${org.restlet.ext.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.restlet.jee</groupId>
|
|
|
|
|
<artifactId>org.restlet.ext.servlet</artifactId>
|
|
|
|
|
<version>${org.restlet.ext.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.restlet.jee</groupId>
|
|
|
|
|
<artifactId>org.restlet.ext.jackson</artifactId>
|
|
|
|
|
<version>${org.restlet.ext.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.restlet.jee</groupId>
|
|
|
|
|
<artifactId>org.restlet.ext.json</artifactId>
|
|
|
|
|
<version>${org.restlet.ext.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
|
<version>${json.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 这个json序列化不会把成员field变成 小写 与fastjson不同 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 表达式引擎 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eweb4j</groupId>
|
|
|
|
|
<artifactId>fel</artifactId>
|
|
|
|
|
<version>${fel.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
|
<version>${javax.mail.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 牛逼的反射库 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.esotericsoftware.reflectasm</groupId>
|
|
|
|
|
<artifactId>reflectasm</artifactId>
|
|
|
|
|
<version>${com.esotericsoftware.reflectasm.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.htmlparser</groupId>
|
|
|
|
|
<artifactId>htmlparser</artifactId>
|
|
|
|
|
<version>${org.htmlparser.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- jxl读取xls文件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.jexcelapi</groupId>
|
|
|
|
|
<artifactId>jxl</artifactId>
|
|
|
|
|
<version>${jxl.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- httpclient -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 二维码生成 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<version>${com.google.zxing.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
|
<version>2.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
|
<version>${jersey-client.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
|
|
<artifactId>axis</artifactId>
|
|
|
|
|
<version>${axis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
|
|
<artifactId>axis-jaxrpc</artifactId>
|
|
|
|
|
<version>${axis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>wsdl4j</groupId>
|
|
|
|
|
<artifactId>wsdl4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-discovery</groupId>
|
|
|
|
|
<artifactId>commons-discovery</artifactId>
|
|
|
|
|
<version>${commons-discovery.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
|
<version>${xstream.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
<version>${groovy.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.univocity</groupId>
|
|
|
|
|
<artifactId>univocity-parsers</artifactId>
|
|
|
|
|
<version>${univocity-parsers.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
|
<version>${commons-compress.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>${guava.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<version>${commons-logging.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
|
|
|
|
<!--commons-logging替换成slf4j -->
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
<!-- 桥接:告诉Slf4j使用Log4j2 -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-web</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--ehcache -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.ehcache</groupId>
|
|
|
|
|
<artifactId>ehcache-core</artifactId>
|
|
|
|
|
<version>${ehcache.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--redis -->
|
|
|
|
|
<dependency>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
|
<!-- <version>${org.springframework.data.version}</version> -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.crazycake</groupId>
|
|
|
|
|
<artifactId>shiro-redis</artifactId>
|
|
|
|
|
<version>${shiro-redis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>Qrcode_swetake</groupId>
|
|
|
|
|
<artifactId>Qrcode_swetake</artifactId>
|
|
|
|
|
<version>3.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
|
<version>1.9.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.dm</groupId>
|
|
|
|
|
<artifactId>dmjdbc7</artifactId>
|
|
|
|
|
<version>1.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jc</groupId>
|
|
|
|
|
<artifactId>jcjdbc8</artifactId>
|
|
|
|
|
<version>8.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
|
<version>${aliyun-sdk-core.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
|
|
|
|
<version>${aliyun-sdk-dysmsapi}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- ueditor 该jar已进行修改,需从3.0的maven仓库下载 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baidu.ueditor</groupId>
|
|
|
|
|
<artifactId>ueditor</artifactId>
|
|
|
|
|
<version>${ueditor.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fr.core</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fr.report</groupId>
|
|
|
|
|
<artifactId>report</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.dblock</groupId>
|
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
|
<version>3.4.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 注解扫描工具 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
|
<version>${reflections.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 字符串操作 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.noear</groupId>
|
|
|
|
|
<artifactId>snack3</artifactId>
|
|
|
|
|
<version>${snack3.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>kdayun-jsql</artifactId>
|
|
|
|
|
<version>${kdayun-jsql.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.coobird</groupId>
|
|
|
|
|
<artifactId>thumbnailator</artifactId>
|
|
|
|
|
<version>${thumbnailator.version}</version>
|
|
|
|
|
</dependency>
|
2022-04-26 09:16:56 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>pdf</artifactId>
|
|
|
|
|
<version>${kdayun.pdf.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>slides</artifactId>
|
|
|
|
|
<version>${kdayun.slides.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>words</artifactId>
|
|
|
|
|
<version>${kdayun.words.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.kdayun</groupId>
|
|
|
|
|
<artifactId>cells</artifactId>
|
|
|
|
|
<version>${kdayun.cells.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.bingoohuang</groupId>
|
|
|
|
|
<artifactId>patchca</artifactId>
|
|
|
|
|
<version>${bingoohuang.patchca.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
<version>${commons-collections.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-02-19 20:28:01 +08:00
|
|
|
|
<!-- 热部署 -->
|
|
|
|
|
<!-- <dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
</dependency>-->
|
|
|
|
|
</dependencies>
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>kdayun-releases</id>
|
|
|
|
|
<url>http://develop.kdayun.com:8081/repository/maven-local/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
2022-02-19 21:30:44 +08:00
|
|
|
|
<id>kdayun-snapshots</id>
|
|
|
|
|
<url>http://develop.kdayun.com:8081/repository/maven-snapshots/</url>
|
|
|
|
|
</snapshotRepository>
|
2022-02-19 20:28:01 +08:00
|
|
|
|
</distributionManagement>
|
2022-09-14 19:37:08 +08:00
|
|
|
|
</project>
|