36 lines
1.1 KiB
XML
36 lines
1.1 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>jy-parent</artifactId>
|
||
|
|
<groupId>com.songyue</groupId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
<relativePath>../jy-parent</relativePath>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>jy-service-api</artifactId>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>jy-system-api</module>
|
||
|
|
</modules>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!--jy-core-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.songyue</groupId>
|
||
|
|
<artifactId>jy-core</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
<!--swagger starter-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.spring4all</groupId>
|
||
|
|
<artifactId>swagger-spring-boot-starter</artifactId>
|
||
|
|
<version>${swagger-starter.version}</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|