feature-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.atool</groupId>
<artifactId>feature-parent</artifactId>
<version>1.4.0</version>
</dependency><?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>
<parent>
<groupId>com.github.atool</groupId>
<artifactId>fluent-parent</artifactId>
<version>1.0.5</version>
</parent>
<version>1.4.0</version>
<artifactId>feature-parent</artifactId>
<name>feature-parent</name>
<packaging>pom</packaging>
<modules>
<module>db-feature</module>
<module>generator</module>
<!-- <module>generator-test</module>-->
</modules>
<properties>
<spring.version>6.2.14</spring.version>
</properties>
<description>java file generator</description>
<url>https://www.test4j.org</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@gitee.com:fluent-mybatis/generator.git</connection>
<developerConnection>scm:git@gitee.com:fluent-mybatis/generator.git</developerConnection>
<url>git@gitee.com:fluent-mybatis/generator.git</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>davey.wu</id>
<name>darui.wu</name>
<email>darui.wu@163.com</email>
</developer>
</developers>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.palantir.javapoet</groupId>
<artifactId>javapoet</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler</artifactId>
<version>17.1.7</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.19</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.4.0</version>
</dependency>
<!-- test -->
<dependency>
<groupId>org.test4j</groupId>
<artifactId>fluent-assert</artifactId>
<version>1.0.6</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>sonatype-center</publishingServerId>
<!-- 设置为 false,禁止自动发布 -->
<autoPublish>false</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
</project>