Skip to content

Commit

Permalink
Support mybatis flex
Browse files Browse the repository at this point in the history
  • Loading branch information
tangllty committed Apr 29, 2024
1 parent 2da7f48 commit 68b25a2
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* Bump redis from 7.2.3 to 7.2.4
* Add mybatis 3.5.16
* Add commons-compress 1.26.1
* Add mybatis-flex-spring-boot3-starter 1.8.8

### Features

Expand Down
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@
<version>3.0.3</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.mybatis-flex/mybatis-flex-spring-boot3-starter -->
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot3-starter</artifactId>
<version>1.8.8</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-spring-boot3-starter -->
<dependency>
<groupId>com.baomidou</groupId>
Expand Down Expand Up @@ -236,6 +243,12 @@
<version>${tang.version}</version>
</dependency>

<dependency>
<groupId>com.tang</groupId>
<artifactId>tang-mybatis-flex</artifactId>
<version>${tang.version}</version>
</dependency>

<dependency>
<groupId>com.tang</groupId>
<artifactId>tang-mybatis-plus</artifactId>
Expand Down
1 change: 1 addition & 0 deletions tang-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

<packaging>pom</packaging>
<modules>
<module>tang-mybatis-flex</module>
<module>tang-mybatis-plus</module>
</modules>

Expand Down
27 changes: 27 additions & 0 deletions tang-extension/tang-mybatis-flex/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.tang</groupId>
<artifactId>tang-extension</artifactId>
<version>1.6.5</version>
</parent>

<artifactId>tang-mybatis-flex</artifactId>

<description>
tang-mybatis-flex MyBatis Flex 支持
</description>

<dependencies>

<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot3-starter</artifactId>
</dependency>

</dependencies>

</project>

0 comments on commit 68b25a2

Please sign in to comment.