🎉 add mybatis module

This commit is contained in:
weihu 2024-03-08 19:55:21 +08:00
parent 6847ae27da
commit 12dbd6b82f
2 changed files with 22 additions and 1 deletions

View File

@ -15,7 +15,8 @@
<module>spring-boot-nebula-common</module>
<module>spring-boot-nebula-samples</module>
<module>spring-boot-nebula-aggregate</module>
</modules>
<module>spring-boot-nebula-mybatis</module>
</modules>
<name>spring-boot-nebula</name>
<description>spring-boot-common</description>

View File

@ -0,0 +1,20 @@
<?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>io.github.weihubeats</groupId>
<artifactId>spring-boot-nebula</artifactId>
<version>0.0.01</version>
</parent>
<artifactId>spring-boot-nebula-mybatis</artifactId>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>