339 lines
9.0 KiB
XML
339 lines
9.0 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>we3epar</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>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>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>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.qiniu.api</groupId>
|
||
|
|
<artifactId>qiniu</artifactId>
|
||
|
|
<version>6.1.7</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/sdk-6.1.7.jar</systemPath>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-logging</groupId>
|
||
|
|
<artifactId>commons-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>javassist</groupId>
|
||
|
|
<artifactId>javassist</artifactId>
|
||
|
|
<version>3.15.0-GA</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/javassist-3.15.0-GA.jar</systemPath>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.json</groupId>
|
||
|
|
<artifactId>json</artifactId>
|
||
|
|
<version>1</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/json.jar</systemPath>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.http</groupId>
|
||
|
|
<artifactId>httpcore</artifactId>
|
||
|
|
<version>4.4</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/httpcore-4.4.jar</systemPath>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.http</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.4</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/httpclient-4.4.jar</systemPath>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-logging</groupId>
|
||
|
|
<artifactId>commons-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.http</groupId>
|
||
|
|
<artifactId>httpmime</artifactId>
|
||
|
|
<version>4.4</version>
|
||
|
|
<scope>system</scope>
|
||
|
|
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/httpmime-4.4.jar</systemPath>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- slf4j -->
|
||
|
|
<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>
|
||
|
|
<!-- 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>
|
||
|
|
</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>
|
||
|
|
|
||
|
|
<!-- 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>
|
||
|
|
|
||
|
|
<!--JAXB API-->
|
||
|
|
|
||
|
|
|
||
|
|
<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>
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<finalName>we3epar</finalName>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<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>
|