添加扩展模块,利用数据库直接生成java pojo对象

This commit is contained in:
liuyueve
2020-08-20 12:37:16 +08:00
parent e08a16e923
commit 55cd438c13
23 changed files with 1299 additions and 0 deletions

View File

@@ -10,6 +10,32 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>screw-extension</artifactId>
<dependencies>
<!--项目核心包-->
<dependency>
<groupId>cn.smallbun.screw</groupId>
<artifactId>screw-core</artifactId>
<version>1.0.5</version>
</dependency>
<!--lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<!--build-->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>