Skip to content

Commit

Permalink
[improve] support jdk 8
Browse files Browse the repository at this point in the history
  • Loading branch information
VampireAchao committed May 9, 2024
1 parent fa11350 commit 07f02d9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
6 changes: 4 additions & 2 deletions java/mybatisplus-java/README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,15 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-testcontainers</artifactId>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.19.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.19.7</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 4 additions & 2 deletions java/mybatisplus-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,15 @@ Add the OceanBase driver, TestContainers OceanBase, MybatisPlusStarter, and Spri
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-testcontainers</artifactId>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.19.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.19.7</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
16 changes: 9 additions & 7 deletions java/mybatisplus-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,14 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.7</version>
<relativePath/> <!-- lookup parent from repository -->
<version>2.7.17</version>
<relativePath/>
</parent>
<groupId>com.oceanbase.samples</groupId>
<artifactId>mybatisplus-java</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>mybatisplus-java</name>
<description>mybatisplus-java</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.oceanbase</groupId>
Expand Down Expand Up @@ -51,9 +46,16 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>1.19.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.19.7</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 07f02d9

Please sign in to comment.