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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<groupId>group.flyfish.framework</groupId>
|
|
|
|
|
<artifactId>fluent-sql</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
2024-07-12 16:51:03 +00:00
|
|
|
|
<version>0.1.0</version>
|
2022-09-07 05:22:37 +00:00
|
|
|
|
|
|
|
|
|
<name>fluent-sql</name>
|
|
|
|
|
<description>A very fast sql generation engine using fluent-style api. Help you start your work without mybatis!</description>
|
|
|
|
|
<url>https://github.com/wybaby168/fluent-sql</url>
|
|
|
|
|
|
|
|
|
|
<!-- SCM信息 -> git在gitee上托管 -->
|
|
|
|
|
<scm>
|
|
|
|
|
<url>https://github.com/wybaby168/fluent-sql.git</url>
|
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
|
<!-- 许可证信息 -->
|
|
|
|
|
<licenses>
|
|
|
|
|
<!-- Apache许可证 -->
|
|
|
|
|
<license>
|
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
2022-09-07 05:23:00 +00:00
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
2022-09-07 05:22:37 +00:00
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
2022-09-06 08:13:01 +00:00
|
|
|
|
<modules>
|
|
|
|
|
<module>fluent-sql-core</module>
|
2024-07-11 09:57:20 +00:00
|
|
|
|
<module>fluent-sql-spring</module>
|
2022-09-07 06:04:23 +00:00
|
|
|
|
<module>fluent-sql-annotations</module>
|
2022-09-07 06:30:14 +00:00
|
|
|
|
<module>fluent-sql-spring-boot-starter</module>
|
2022-09-06 08:13:01 +00:00
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
<lombok.version>1.18.24</lombok.version>
|
2024-07-12 16:33:32 +00:00
|
|
|
|
<jackson.version>2.17.2</jackson.version>
|
|
|
|
|
<spring-boot.version>2.7.18</spring-boot.version>
|
2022-09-06 08:13:01 +00:00
|
|
|
|
<spring.version>5.3.22</spring.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<!-- 开发人员信息 -->
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<name>wangyu</name>
|
|
|
|
|
<email>wybaby168@gmail.com</email>
|
|
|
|
|
<organization>http://flyfish.group</organization>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>central</id>
|
|
|
|
|
<url>https://maven.aliyun.com/nexus/content/groups/public</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
2022-09-07 06:04:23 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>group.flyfish.framework</groupId>
|
|
|
|
|
<artifactId>fluent-sql-annotations</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2022-09-07 06:30:14 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>group.flyfish.framework</groupId>
|
2024-07-11 09:57:20 +00:00
|
|
|
|
<artifactId>fluent-sql-spring</artifactId>
|
2022-09-07 06:30:14 +00:00
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2022-09-07 05:17:25 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>group.flyfish.framework</groupId>
|
|
|
|
|
<artifactId>fluent-sql-core</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2022-09-06 08:13:01 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2022-09-07 06:30:14 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
2022-09-06 08:13:01 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
2022-09-07 05:17:25 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-beans</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
2024-07-11 09:57:20 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-r2dbc</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
2022-12-08 09:15:50 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
|
<version>3.5.10</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
|
|
|
<version>3.5.2</version>
|
|
|
|
|
</dependency>
|
2022-09-06 08:13:01 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>1.7.36</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
|
|
<version>1.0.2</version>
|
|
|
|
|
</dependency>
|
2022-09-07 05:17:25 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.13.2</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>8.0.29</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-07-11 09:57:20 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
|
<artifactId>reactor-core</artifactId>
|
|
|
|
|
<version>3.6.7</version>
|
|
|
|
|
</dependency>
|
2022-09-06 08:13:01 +00:00
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<show>package</show>
|
|
|
|
|
<doclint>none</doclint>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<version>1.5</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<version>1.6.7</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.7.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<version>3.1.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
|
<overWriteReleases>false</overWriteReleases>
|
|
|
|
|
<overWriteSnapshots>true</overWriteSnapshots>
|
|
|
|
|
<overWriteIfNewer>true</overWriteIfNewer>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|