<?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>
|
<groupId>com.vci</groupId>
|
<artifactId>plt-web-parent</artifactId>
|
<version>2024.1-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<artifactId>plt-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>${plt.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.client</groupId>
|
<artifactId>plt-client</artifactId>
|
<version>${plt.version}</version>
|
</dependency>
|
<!--client的依赖-->
|
<dependency>
|
<groupId>com.formdev</groupId>
|
<artifactId>flatlaf</artifactId>
|
<version>2.3</version>
|
</dependency>
|
<dependency>
|
<groupId>com.jgoodies</groupId>
|
<artifactId>jgoodies-common</artifactId>
|
<version>1.8.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.jgoodies</groupId>
|
<artifactId>jgoodies-looks</artifactId>
|
<version>2.5.3</version>
|
</dependency>
|
<dependency>
|
<groupId>com.jgraph</groupId>
|
<artifactId>jgraph</artifactId>
|
<version>3.1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.mxgraph</groupId>
|
<artifactId>jgraphx</artifactId>
|
<version>3.1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.l2fprod</groupId>
|
<artifactId>nativeskin</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.belerweb</groupId>
|
<artifactId>pinyin4j</artifactId>
|
<version>2.5.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.9</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.9</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>3.9</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-scratchpad</artifactId>
|
<version>3.9</version>
|
</dependency>
|
<dependency>
|
<groupId>com.protege</groupId>
|
<artifactId>protege35</artifactId>
|
<version>1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.skinlf</groupId>
|
<artifactId>skinlf</artifactId>
|
<version>6.7</version>
|
</dependency>
|
<dependency>
|
<groupId>org.swinglabs</groupId>
|
<artifactId>swingx</artifactId>
|
<version>1.6.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.swixml</groupId>
|
<artifactId>swixml</artifactId>
|
<version>2.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.uitheme</groupId>
|
<artifactId>uitheme</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
|
<!--common-->
|
<dependency>
|
<groupId>com.vci.common</groupId>
|
<artifactId>plt-common</artifactId>
|
<version>${plt.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.vci.corba</groupId>
|
<artifactId>plt-slice</artifactId>
|
<version>${plt.version}</version>
|
</dependency>
|
<!--common的依赖-->
|
<dependency>
|
<groupId>com.zeroc</groupId>
|
<artifactId>ice</artifactId>
|
<version>3.7.10</version>
|
</dependency>
|
<dependency>
|
<groupId>com.zeroc</groupId>
|
<artifactId>icebox</artifactId>
|
<version>3.7.10</version>
|
</dependency>
|
<dependency>
|
<groupId>com.zeroc</groupId>
|
<artifactId>icegridgui</artifactId>
|
<version>${plt.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
<version>1.6.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
<version>2.3.19</version>
|
</dependency>
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<version>4.8</version>
|
</dependency>
|
<dependency>
|
<groupId>javax.mail</groupId>
|
<artifactId>mail</artifactId>
|
<version>1.4</version>
|
</dependency>
|
|
</dependencies>
|
</project>
|