Skip to content

Commit

Permalink
发布2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed May 27, 2024
1 parent 30d07ea commit 5f2afb4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-jakarta-jpa</artifactId>
<version>2.2.3</version>
<version>2.2.4</version>
</dependency>
```

Expand Down Expand Up @@ -51,19 +51,19 @@ MyBatis Mapper 要求 MyBatis 最低版本为
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-mapper</artifactId>
<version>2.2.3</version>
<version>2.2.4</version>
</dependency>
<!-- 使用 Service 层封装时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-service</artifactId>
<version>2.2.3</version>
<version>2.2.4</version>
</dependency>
<!-- 使用 ActiveRecord 模式时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-activerecord</artifactId>
<version>2.2.3</version>
<version>2.2.4</version>
</dependency>
</dependencies>
```
Expand All @@ -73,11 +73,11 @@ MyBatis Mapper 要求 MyBatis 最低版本为

```groovy
dependencies {
compile("io.mybatis:mybatis-mapper:2.2.3")
compile("io.mybatis:mybatis-mapper:2.2.4")
// 使用 Service 层封装时
compile("io.mybatis:mybatis-service:2.2.3")
compile("io.mybatis:mybatis-service:2.2.4")
// 使用 ActiveRecord 模式时
compile("io.mybatis:mybatis-activerecord:2.2.3")
compile("io.mybatis:mybatis-activerecord:2.2.4")
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</modules>

<properties>
<revision>2.2.3</revision>
<revision>2.2.4</revision>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 5f2afb4

Please sign in to comment.