<?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>platform-parent</artifactId>
|
<groupId>com.vci</groupId>
|
<version>2024.1-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<artifactId>vci-platform-starter</artifactId>
|
<properties>
|
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.target>8</maven.compiler.target>
|
</properties>
|
<dependencies>
|
<!-- 新平台所需要的包 -->
|
<!--client-->
|
<dependency>
|
<groupId>com.vci.client</groupId>
|
<artifactId>plt-clientbase</artifactId>
|
<version>1.0.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.client</groupId>
|
<artifactId>plt-client</artifactId>
|
<version>1.0.RELEASE</version>
|
</dependency>
|
|
<!--common-->
|
<dependency>
|
<groupId>com.vci.common</groupId>
|
<artifactId>plt-common</artifactId>
|
<version>1.0.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.corba</groupId>
|
<artifactId>plt-slice</artifactId>
|
<version>1.0.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>com.zeroc</groupId>
|
<artifactId>icegridgui</artifactId>
|
<version>1.0.RELEASE</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.jbpm</groupId>
|
<artifactId>jbpm-core</artifactId>
|
<version>4.3.2</version>
|
</dependency>
|
<dependency>
|
<groupId>javax.mail</groupId>
|
<artifactId>mail</artifactId>
|
<version>1.4</version>
|
</dependency>
|
<!--操作xml需要-->
|
<dependency>
|
<groupId>dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
<version>1.6.1</version>
|
</dependency>
|
<!--commons的几个组件-->
|
<dependency>
|
<groupId>commons-net</groupId>
|
<artifactId>commons-net</artifactId>
|
<version>1.4.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.5</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
<dependency><!---zip压缩 替换antzip-->
|
<groupId>net.lingala.zip4j</groupId>
|
<artifactId>zip4j</artifactId>
|
<version>1.3.2</version>
|
</dependency>
|
<dependency><!--zip压缩所需要的jar-->
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-compress</artifactId>
|
<version>1.9</version>
|
</dependency>
|
|
|
|
|
</dependencies>
|
</project>
|