fluent-sql/fluent-sql-core/pom.xml

42 lines
1.4 KiB
XML
Raw Normal View History

2022-09-06 08:13:01 +00: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>fluent-sql</artifactId>
<groupId>group.flyfish.framework</groupId>
2022-09-07 05:17:25 +00:00
<version>0.0.1</version>
2022-09-06 08:13:01 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>fluent-sql-core</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
2022-09-07 06:04:23 +00:00
<dependency>
<groupId>group.flyfish.framework</groupId>
<artifactId>fluent-sql-annotations</artifactId>
</dependency>
2022-09-06 08:13:01 +00:00
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
2022-09-07 05:17:25 +00:00
<artifactId>spring-beans</artifactId>
2022-09-06 08:13:01 +00:00
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
</dependencies>
</project>