forked from github/dataease
56 lines
1.6 KiB
XML
56 lines
1.6 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>sdk</artifactId>
|
||
|
<groupId>io.dataease</groupId>
|
||
|
<version>2.0.0</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>api</artifactId>
|
||
|
|
||
|
<packaging>pom</packaging>
|
||
|
<modules>
|
||
|
<module>api-permissions</module>
|
||
|
<module>api-base</module>
|
||
|
</modules>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!--<dependency>
|
||
|
<groupId>io.dataease</groupId>
|
||
|
<artifactId>common</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>-->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>io.dataease</groupId>
|
||
|
<artifactId>dataease-license-sdk</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.flywaydb</groupId>
|
||
|
<artifactId>flyway-core</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.flywaydb</groupId>
|
||
|
<artifactId>flyway-mysql</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|