65 lines
2.0 KiB
XML
65 lines
2.0 KiB
XML
<?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>pluss-parent</artifactId>
|
|
<groupId>cn.pluss.platform</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>pluss-model-bundle</artifactId>
|
|
<version>1.0.0</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.jdom</groupId>
|
|
<artifactId>jdom2</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 引用comoon服务 -->
|
|
<dependency>
|
|
<groupId>cn.pluss.platform</groupId>
|
|
<artifactId>pluss-common-bundle</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-annotation</artifactId>
|
|
<version>3.3.2</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
|
|
<dependency>
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<version>1.4.11</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>dom4j</groupId>
|
|
<artifactId>dom4j</artifactId>
|
|
<version>1.6.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>2.9.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>mapstruct</artifactId>
|
|
<groupId>org.mapstruct</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |