Skip to content

Commit

Permalink
发布2.2.1版本
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed Dec 15, 2023
1 parent da93fe8 commit 1ebcdf7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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.0</version>
<version>2.2.1</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.0</version>
<version>2.2.1</version>
</dependency>
<!-- 使用 Service 层封装时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-service</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</dependency>
<!-- 使用 ActiveRecord 模式时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-activerecord</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</dependency>
</dependencies>
```
Expand All @@ -73,11 +73,11 @@ MyBatis Mapper 要求 MyBatis 最低版本为

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

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
</modules>

<properties>
<revision>2.2.0</revision>
<revision>2.2.1</revision>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<argLine>-Dfile.encoding=UTF-8</argLine>

<provider.version>2.2.2</provider.version>
<provider.version>2.2.3</provider.version>

<mybatis.version>3.5.13</mybatis.version>
<mybatis-spring.version>2.1.0</mybatis-spring.version>
Expand Down

0 comments on commit 1ebcdf7

Please sign in to comment.