2023-12-02 21:33:16 +08:00
|
|
|
<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>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
|
|
|
<artifactId>datacap</artifactId>
|
|
|
|
<version>1.18.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>datacap-fs-spi</artifactId>
|
|
|
|
<description>DataCap - File system spi</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<guice.version>5.1.0</guice.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
<version>${guice.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-12-03 21:50:42 +08:00
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2023-12-02 21:33:16 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|