forward-engineering
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.neko233</groupId>
<artifactId>forward-engineering</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.neko233</groupId>
<artifactId>forward-engineering</artifactId>
<version>1.0.1</version>
<name>forward-engineering</name>
<description>ForwardEngineering is a Java Class -> Code Generator Tech.
1. you can generate DB Table DDL (example: MySQL)
2. you can generate Spring Web MVC Code
3. you can generate Event Handler in Reactive Style by your self~
Official only support very simple Template to you, but you can DIY your self. Enjoy it!</description>
<url>https://gitee.com/SolarisNeko/forward-engineering</url>
<licenses>
<license>
<name>Apache 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>SolarisNeko</name>
<url>https://github.com/SolarisNeko</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/SolarisNeko/forward-engineering.git</connection>
<developerConnection>scm:git:ssh://github.com/SolarisNeko/forward-engineering.git</developerConnection>
<url>http://github.com/SolarisNeko/forward-engineering/tree/main</url>
</scm>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.neko233</groupId>
<artifactId>neko233-utils-all</artifactId>
<version>0.3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.6</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>