You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.1 KiB
65 lines
2.1 KiB
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.jianshui</groupId>
|
|
<artifactId>jianshui</artifactId>
|
|
<version>3.8.0</version>
|
|
</parent>
|
|
<artifactId>jianshui-platform</artifactId>
|
|
<packaging>war</packaging>
|
|
<name>jianshui-platform Maven Webapp</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<build>
|
|
<finalName>jianshui-platform</finalName>
|
|
</build>
|
|
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.jianshui</groupId>
|
|
<artifactId>jianshui-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jianshui</groupId>
|
|
<artifactId>jianshui-queue</artifactId>
|
|
<version>3.8.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jianshui</groupId>
|
|
<artifactId>jianshui-system</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>3.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.8.0.M1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>1.6.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
</project>
|
|
|