🎉 add mybatis module
This commit is contained in:
parent
6847ae27da
commit
12dbd6b82f
3
pom.xml
3
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue