forked from github/dataease
53c9d1731e
1.添加目标数据源同步到数据准备 2.UI调整
48 lines
1.3 KiB
Java
48 lines
1.3 KiB
Java
<?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>${dataease.version}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>api-permissions</module>
|
|
<module>api-base</module>
|
|
<module>api-sync</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
|
|
<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> |