<?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">
|
<parent>
|
<artifactId>UBCS</artifactId>
|
<groupId>com.vci.ubcs</groupId>
|
<version>3.0.1.RELEASE</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<properties>
|
<vciplt.version>2022.RELEASE</vciplt.version>
|
<old.spring.version>3.2.0.RELEASE</old.spring.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<java.version>1.8</java.version>
|
</properties>
|
<artifactId>ubcs-codeApply</artifactId>
|
<dependencies>
|
<dependency><!--VciBase基础包-->
|
<groupId>com.vci.platform</groupId>
|
<artifactId>VCIBase-client</artifactId>
|
<version>${vciplt.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.platform</groupId>
|
<artifactId>VCIBase-common</artifactId>
|
<version>${vciplt.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.ubcs</groupId>
|
<artifactId>ubcs-user-api</artifactId>
|
<version>3.0.1.RELEASE</version>
|
<scope>compile</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.ubcs</groupId>
|
<artifactId>ubcs-code-api</artifactId>
|
<version>3.0.1.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-collections4</artifactId>
|
<version>4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils-core</artifactId>
|
<version>1.8.3</version>
|
</dependency>
|
</dependencies>
|
<distributionManagement>
|
<repository>
|
<id>rdc-releases</id>
|
<url>http://nexus.vci-tech.com:9000/repository/maven-releases/</url>
|
</repository>
|
<snapshotRepository>
|
<id>rdc-snapshots</id>
|
<url>http://nexus.vci-tech.com:9000/repository/maven-snapshots/</url>
|
</snapshotRepository>
|
</distributionManagement>
|
</project>
|