gis-bi/sdk/api/pom.xml

42 lines
1.1 KiB
Java
Raw Normal View History

2025-02-27 14:44:08 +08:00
<?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>
2025-02-28 17:56:48 +08:00
<groupId>io.gisbi</groupId>
<version>1.0.0</version>
2025-02-27 14:44:08 +08:00
</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>
2025-02-28 17:56:48 +08:00
<groupId>io.gisbi</groupId>
2025-02-27 14:44:08 +08:00
<artifactId>common</artifactId>
2025-02-28 17:56:48 +08:00
<version>1.0.0</version>
2025-02-27 14:44:08 +08:00
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
</dependency>
</dependencies>
</project>