Skip to content

Commit

Permalink
1.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
yulichang committed Jan 17, 2024
1 parent 3ed76b8 commit 0a6d71a
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 11 deletions.
5 changes: 2 additions & 3 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<a href="https://gitee.com/best_handsome/mybatis-plus-join" target="_blank">
<img src="https://gitee.com/best_handsome/mybatis-plus-join/badge/star.svg?theme=dark" alt=""/>
</a>
<br/>
<a href="https://central.sonatype.com/artifact/com.github.yulichang/mybatis-plus-join-boot-starter">
<img alt="maven" src="https://img.shields.io/maven-central/v/com.github.yulichang/mybatis-plus-join-boot-starter.svg?style=flat-square">
</a>
Expand Down Expand Up @@ -49,12 +48,12 @@ QQ群:1022221898 或者
<dependency>
<groupId>com.github.yulichang</groupId>
<artifactId>mybatis-plus-join-boot-starter</artifactId>
<version>1.4.9</version>
<version>1.4.10</version>
</dependency>
```
- Gradle
```
implementation 'com.github.yulichang:mybatis-plus-join-boot-starter:1.4.9'
implementation 'com.github.yulichang:mybatis-plus-join-boot-starter:1.4.10'
```
或者clone代码到本地执行 mvn install, 再引入以上依赖
<br>
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<a href="https://gitee.com/best_handsome/mybatis-plus-join" target="_blank">
<img src="https://gitee.com/best_handsome/mybatis-plus-join/badge/star.svg?theme=dark" alt=""/>
</a>
<br/>
<a href="https://central.sonatype.com/artifact/com.github.yulichang/mybatis-plus-join-boot-starter">
<img alt="maven" src="https://img.shields.io/maven-central/v/com.github.yulichang/mybatis-plus-join-boot-starter.svg?style=flat-square">
</a>
Expand Down Expand Up @@ -47,12 +46,12 @@ QQ群:1022221898 或者
<dependency>
<groupId>com.github.yulichang</groupId>
<artifactId>mybatis-plus-join-boot-starter</artifactId>
<version>1.4.9</version>
<version>1.4.10</version>
</dependency>
```
- Gradle
```
implementation 'com.github.yulichang:mybatis-plus-join-boot-starter:1.4.9'
implementation 'com.github.yulichang:mybatis-plus-join-boot-starter:1.4.10'
```
或者clone代码到本地执行 mvn install, 再引入以上依赖
<br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public MPJInterceptorConfig(List<SqlSessionFactory> sqlSessionFactoryList, Boole
System.out.println(" _ _ |_ _ _|_. ___ _ | _ . _ . _ \n" +
"| | |\\/|_)(_| | |_\\ |_)||_|_\\ | (_) | | | \n" +
" / | /\n" +
" 1.4.9");
" 1.4.10");
}
}

Expand Down
2 changes: 1 addition & 1 deletion mybatis-plus-join-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</scm>

<properties>
<revision>1.4.9</revision>
<revision>1.4.10</revision>
<mpj.mybatis.plus.version>3.5.5</mpj.mybatis.plus.version>

<jdkVersion>1.8</jdkVersion>
Expand Down
32 changes: 31 additions & 1 deletion mybatis-plus-join-test/test-springboot3-jdk17/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<artifactId>test-springboot3-jdk17</artifactId>

<properties>
<revision>1.4.9</revision>
<revision>1.4.10</revision>
<mpj.mybatis.plus.version>3.5.5</mpj.mybatis.plus.version>

<maven.compiler.source>17</maven.compiler.source>
Expand Down Expand Up @@ -88,4 +88,34 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<!-- 是否更新pom文件,此处还有更高级的用法 -->
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion mybatis-plus-join/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</scm>

<properties>
<revision>1.4.9</revision>
<revision>1.4.10</revision>

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

<properties>
<revision>1.4.9</revision>
<revision>1.4.10</revision>
<mpj.mybatis.plus.version>3.5.5</mpj.mybatis.plus.version>

<jdkVersion>1.8</jdkVersion>
Expand Down

0 comments on commit 0a6d71a

Please sign in to comment.