feat: 升级0.0.2,规范模块

This commit is contained in:
wangyu 2022-09-07 14:04:23 +08:00
parent 15b6a4a3b3
commit dedbd62d8f
16 changed files with 30 additions and 2 deletions

View File

@ -0,0 +1,18 @@
<?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>
<version>0.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>fluent-sql-annotations</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
</project>

View File

@ -17,6 +17,10 @@
</properties>
<dependencies>
<dependency>
<groupId>group.flyfish.framework</groupId>
<artifactId>fluent-sql-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>

View File

@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>fluent-sql-jdbctemplate</artifactId>
<artifactId>fluent-sql-spring-jdbc</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>

View File

@ -29,7 +29,8 @@
<modules>
<module>fluent-sql-core</module>
<module>fluent-sql-jdbctemplate</module>
<module>fluent-sql-spring-jdbc</module>
<module>fluent-sql-annotations</module>
</modules>
<properties>
@ -78,6 +79,11 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>group.flyfish.framework</groupId>
<artifactId>fluent-sql-annotations</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>group.flyfish.framework</groupId>
<artifactId>fluent-sql-core</artifactId>