You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
|
1 year ago
|
<?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>com.liuhuiyu</groupId>
|
||
|
|
<artifactId>web-service-util</artifactId>
|
||
|
|
<version>2022.1.0</version>
|
||
|
|
<name>Web Service Util</name>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<org.apache.axis.version>1.4</org.apache.axis.version>
|
||
|
|
<jdom.version>1.1</jdom.version>
|
||
|
|
<com.liuhuiyu.test2.version>2022.1.0</com.liuhuiyu.test2.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.axis</groupId>
|
||
|
|
<artifactId>axis</artifactId>
|
||
|
|
<version>${org.apache.axis.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jdom</groupId>
|
||
|
|
<artifactId>jdom</artifactId>
|
||
|
|
<version>${jdom.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.liuhuiyu</groupId>
|
||
|
|
<artifactId>test2</artifactId>
|
||
|
|
<version>${com.liuhuiyu.test2.version}</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|