401 lines
11 KiB
XML
401 lines
11 KiB
XML
|
|
<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/maven-v4_0_0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<groupId>com.cdrcb</groupId>
|
||
|
|
<artifactId>we3e</artifactId>
|
||
|
|
<packaging>war</packaging>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>alipay Maven Webapp</name>
|
||
|
|
<url>http://maven.apache.org</url>
|
||
|
|
|
||
|
|
<repositories>
|
||
|
|
<!-- 官方maven仓库 -->
|
||
|
|
<repository>
|
||
|
|
<id>maven</id>
|
||
|
|
<name>Maven Repository Switchboard</name>
|
||
|
|
<layout>default</layout>
|
||
|
|
<url>http://repo1.maven.org/maven2</url>
|
||
|
|
<snapshots>
|
||
|
|
<enabled>true</enabled>
|
||
|
|
</snapshots>
|
||
|
|
</repository>
|
||
|
|
|
||
|
|
<!-- alibaba maven仓库 -->
|
||
|
|
<repository>
|
||
|
|
<id>alibaba-opensource</id>
|
||
|
|
<name>alibaba-opensource</name>
|
||
|
|
<url>http://code.alibabatech.com/mvn/releases/</url>
|
||
|
|
<layout>default</layout>
|
||
|
|
</repository>
|
||
|
|
<repository>
|
||
|
|
<id>alibaba-opensource-snapshot</id>
|
||
|
|
<name>alibaba-opensource-snapshot</name>
|
||
|
|
<url>http://code.alibabatech.com/mvn/snapshots/</url>
|
||
|
|
<layout>default</layout>
|
||
|
|
</repository>
|
||
|
|
</repositories>
|
||
|
|
|
||
|
|
<!-- 指定项目编码 -->
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- alipay -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>dom4j</groupId>
|
||
|
|
<artifactId>dom4j</artifactId>
|
||
|
|
<version>1.6.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 钉钉-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.aliyun</groupId>
|
||
|
|
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
|
||
|
|
<version>2.0.0</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-logging</groupId>
|
||
|
|
<artifactId>commons-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>log4j</groupId>
|
||
|
|
<artifactId>log4j</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.dingtalk.open</groupId>
|
||
|
|
<artifactId>app-stream-client</artifactId>
|
||
|
|
<version>1.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.thetransactioncompany</groupId>
|
||
|
|
<artifactId>cors-filter</artifactId>
|
||
|
|
<version>2.5</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>commons-logging</groupId>-->
|
||
|
|
<!-- <artifactId>commons-logging</artifactId>-->
|
||
|
|
<!-- <version>1.1.3</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-codec</groupId>
|
||
|
|
<artifactId>commons-codec</artifactId>
|
||
|
|
<version>1.9</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>javax.servlet</groupId>-->
|
||
|
|
<!-- <artifactId>servlet-api</artifactId>-->
|
||
|
|
<!-- <version>1.0</version>-->
|
||
|
|
<!-- <scope>system</scope>-->
|
||
|
|
<!-- <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/servlet-api.jar</systemPath>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.platform</groupId>
|
||
|
|
<artifactId>jakarta.jakartaee-api</artifactId>
|
||
|
|
<version>8.0.0</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.servlet</groupId>
|
||
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
||
|
|
<version>6.1.0</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.servlet.jsp</groupId>
|
||
|
|
<artifactId>jakarta.servlet.jsp-api</artifactId>
|
||
|
|
<version>4.0.0</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.netty</groupId>
|
||
|
|
<artifactId>netty-all</artifactId>
|
||
|
|
<version>4.0.25.Final</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/netty-all-4.0.25.Final.jar</systemPath>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<!-- log4j-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-api</artifactId>
|
||
|
|
<version>2.0.16</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
|
<artifactId>log4j-api</artifactId>
|
||
|
|
<version>2.23.1</version> <!-- 替换为最新版本 -->
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
|
<artifactId>log4j-core</artifactId>
|
||
|
|
<version>2.23.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
|
<artifactId>log4j-slf4j2-impl</artifactId>
|
||
|
|
<version>2.23.1</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- slf4j -->
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
||
|
|
<!-- <artifactId>slf4j-api</artifactId>-->
|
||
|
|
<!-- <version>1.7.5</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
||
|
|
<!-- <artifactId>slf4j-log4j12</artifactId>-->
|
||
|
|
<!-- <version>1.7.5</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
<!-- junit -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.10</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- log4j -->
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>log4j</groupId>-->
|
||
|
|
<!-- <artifactId>log4j</artifactId>-->
|
||
|
|
<!-- <version>1.2.17</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
|
||
|
|
<!-- aspectjweaver -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.aspectj</groupId>
|
||
|
|
<artifactId>aspectjweaver</artifactId>
|
||
|
|
<version>1.7.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- mysql驱动包 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>5.1.26</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- druid -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>druid</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- json -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>2.0.53</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- struts2 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.struts</groupId>
|
||
|
|
<artifactId>struts2-core</artifactId>
|
||
|
|
<version>7.0.0</version>
|
||
|
|
<!-- <exclusions>-->
|
||
|
|
<!-- <exclusion>-->
|
||
|
|
<!-- <groupId>org.apache.logging.log4j</groupId>-->
|
||
|
|
<!-- <artifactId>log4j-api</artifactId>-->
|
||
|
|
<!-- </exclusion>-->
|
||
|
|
<!-- </exclusions>-->
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.struts</groupId>
|
||
|
|
<artifactId>struts2-spring-plugin</artifactId>
|
||
|
|
<version>7.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.struts</groupId>
|
||
|
|
<artifactId>struts2-json-plugin</artifactId>
|
||
|
|
<version>7.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.struts</groupId>
|
||
|
|
<artifactId>struts2-convention-plugin</artifactId>
|
||
|
|
<version>7.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>com.opensymphony</groupId>-->
|
||
|
|
<!-- <artifactId>xwork-core</artifactId>-->
|
||
|
|
<!-- <version>2.1.6</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
|
||
|
|
<!-- Spring 3 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-core</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-logging</groupId>
|
||
|
|
<artifactId>commons-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
<version>6.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-context</artifactId>
|
||
|
|
<version>6.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-context-support</artifactId>
|
||
|
|
<version>6.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-beans</artifactId>
|
||
|
|
<version>6.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-web</artifactId>
|
||
|
|
<version>6.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-expression</artifactId>
|
||
|
|
<version>6.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-orm</artifactId>
|
||
|
|
<version>6.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.quartz-scheduler</groupId>
|
||
|
|
<artifactId>quartz</artifactId>
|
||
|
|
<version>2.2.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Java转xml工具 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
||
|
|
<artifactId>xstream</artifactId>
|
||
|
|
<version>1.4.17</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>javassist</groupId>
|
||
|
|
<artifactId>javassist</artifactId>
|
||
|
|
<version>3.12.1.GA</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.qiniu</groupId>
|
||
|
|
<artifactId>sdk</artifactId>
|
||
|
|
<version>6.1.7</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-logging</groupId>
|
||
|
|
<artifactId>commons-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.aliyun.oss</groupId>
|
||
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
||
|
|
<version>3.17.4</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-logging</groupId>
|
||
|
|
<artifactId>commons-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.xml.bind</groupId>
|
||
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
||
|
|
<version>4.0.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.activation</groupId>
|
||
|
|
<artifactId>jakarta.activation-api</artifactId>
|
||
|
|
<version>2.1.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- no more than 2.3.3-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.glassfish.jaxb</groupId>
|
||
|
|
<artifactId>jaxb-runtime</artifactId>
|
||
|
|
<version>2.3.3</version>
|
||
|
|
</dependency>
|
||
|
|
<!--JAXB API-->
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.4.1</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-logging</groupId>
|
||
|
|
<artifactId>commons-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpcore</artifactId>
|
||
|
|
<version>4.4.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpmime</artifactId>
|
||
|
|
<version>4.4.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<finalName>we3e</finalName>
|
||
|
|
<plugins>
|
||
|
|
<!--<plugin>
|
||
|
|
<groupId>org.apache.maven.plugin</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.8.1</version>
|
||
|
|
<configuration>
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>-->
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<version>2.5</version>
|
||
|
|
<configuration>
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.8.1</version>
|
||
|
|
<configuration>
|
||
|
|
<compilerVersion>17</compilerVersion>
|
||
|
|
<source>17</source>
|
||
|
|
<target>17</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<version>3.3.2</version>
|
||
|
|
</plugin>
|
||
|
|
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|