fluent-sql/fluent-sql-spring/pom.xml

83 lines
2.7 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-27 03:17:09 +00:00
<version>0.0.5</version>
2022-09-06 08:13:01 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
2024-07-11 09:57:20 +00:00
<artifactId>fluent-sql-spring</artifactId>
2022-09-06 08:13:01 +00:00
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
2022-09-07 05:17:25 +00:00
<dependencies>
<dependency>
<groupId>group.flyfish.framework</groupId>
<artifactId>fluent-sql-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
2024-07-11 09:57:20 +00:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-r2dbc</artifactId>
<optional>true</optional>
2022-09-07 05:17:25 +00:00
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<scope>test</scope>
</dependency>
2022-09-07 05:17:25 +00:00
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>test</scope>
</dependency>
2024-07-12 16:48:49 +00:00
<dependency>
<groupId>io.asyncer</groupId>
<artifactId>r2dbc-mysql</artifactId>
<version>0.9.7</version>
<scope>test</scope>
</dependency>
2022-09-07 05:17:25 +00:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-extension</artifactId>
<scope>test</scope>
</dependency>
2022-09-07 05:17:25 +00:00
</dependencies>
<!--包含测试mapper-->
<build>
<testResources>
<testResource>
<directory>src/test/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<!-- 是否替换资源中的属性-->
<filtering>false</filtering>
</testResource>
</testResources>
</build>
2022-09-06 08:13:01 +00:00
</project>