Skip to content

Commit da12a56

Browse files
committed
test
1 parent 63d23d0 commit da12a56

File tree

24 files changed

+202
-383
lines changed
  • mybatis-plus-sample-active-record
  • mybatis-plus-sample-assembly
  • mybatis-plus-sample-auto-fill-metainfo
  • mybatis-plus-sample-crud
  • mybatis-plus-sample-customize-basemapper
  • mybatis-plus-sample-deluxe
  • mybatis-plus-sample-dts-rabbit
  • mybatis-plus-sample-dynamic-tablename
  • mybatis-plus-sample-enum
  • mybatis-plus-sample-execution-analysis
  • mybatis-plus-sample-generator
  • mybatis-plus-sample-logic-delete
  • mybatis-plus-sample-optimistic-locker
  • mybatis-plus-sample-performance-analysis
  • mybatis-plus-sample-quickstart-springmvc
  • mybatis-plus-sample-quickstart
  • mybatis-plus-sample-reduce-springmvc
  • mybatis-plus-sample-sequence
  • mybatis-plus-sample-sql-injector
  • mybatis-plus-sample-tenant
  • mybatis-plus-sample-typehandler
  • mybatis-plus-sample-wrapper

24 files changed

+202
-383
lines changed
Lines changed: 31 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,37 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<parent>
5-
<artifactId>mybatis-plus-samples</artifactId>
6-
<groupId>com.baomidou</groupId>
7-
<version>0.0.1-SNAPSHOT</version>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<artifactId>mybatis-plus-samples</artifactId>
6+
<groupId>com.baomidou</groupId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
1010

11-
<artifactId>mybatis-plus-sample-active-record</artifactId>
11+
<artifactId>mybatis-plus-sample-active-record</artifactId>
1212

13-
<dependencies>
14-
<dependency>
15-
<groupId>org.springframework.boot</groupId>
16-
<artifactId>spring-boot-starter</artifactId>
17-
</dependency>
18-
<dependency>
19-
<groupId>org.springframework.boot</groupId>
20-
<artifactId>spring-boot-starter-test</artifactId>
21-
<scope>test</scope>
22-
</dependency>
23-
<dependency>
24-
<groupId>org.projectlombok</groupId>
25-
<artifactId>lombok</artifactId>
26-
<scope>provided</scope>
27-
</dependency>
28-
<dependency>
29-
<groupId>com.h2database</groupId>
30-
<artifactId>h2</artifactId>
31-
<scope>runtime</scope>
32-
</dependency>
33-
<dependency>
34-
<groupId>com.baomidou</groupId>
35-
<artifactId>mybatis-plus-boot-starter</artifactId>
36-
</dependency>
37-
</dependencies>
13+
<dependencies>
14+
<dependency>
15+
<groupId>org.springframework.boot</groupId>
16+
<artifactId>spring-boot-starter</artifactId>
17+
</dependency>
18+
<dependency>
19+
<groupId>com.h2database</groupId>
20+
<artifactId>h2</artifactId>
21+
<scope>runtime</scope>
22+
</dependency>
23+
<dependency>
24+
<groupId>com.baomidou</groupId>
25+
<artifactId>mybatis-plus-boot-starter</artifactId>
26+
</dependency>
27+
</dependencies>
3828

39-
<build>
40-
<plugins>
41-
<plugin>
42-
<groupId>org.springframework.boot</groupId>
43-
<artifactId>spring-boot-maven-plugin</artifactId>
44-
</plugin>
45-
</plugins>
46-
</build>
29+
<build>
30+
<plugins>
31+
<plugin>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-maven-plugin</artifactId>
34+
</plugin>
35+
</plugins>
36+
</build>
4737
</project>

mybatis-plus-sample-assembly/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,6 @@
2020
<groupId>org.springframework.boot</groupId>
2121
<artifactId>spring-boot-starter-web</artifactId>
2222
</dependency>
23-
<dependency>
24-
<groupId>org.springframework.boot</groupId>
25-
<artifactId>spring-boot-starter-test</artifactId>
26-
<scope>test</scope>
27-
</dependency>
28-
<dependency>
29-
<groupId>org.projectlombok</groupId>
30-
<artifactId>lombok</artifactId>
31-
<scope>provided</scope>
32-
</dependency>
3323
<dependency>
3424
<groupId>com.h2database</groupId>
3525
<artifactId>h2</artifactId>

mybatis-plus-sample-auto-fill-metainfo/pom.xml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,12 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>mybatis-plus-sample-auto-fill-metainfo</artifactId>
13-
14-
13+
1514
<dependencies>
1615
<dependency>
1716
<groupId>org.springframework.boot</groupId>
1817
<artifactId>spring-boot-starter</artifactId>
1918
</dependency>
20-
<dependency>
21-
<groupId>org.springframework.boot</groupId>
22-
<artifactId>spring-boot-starter-test</artifactId>
23-
<scope>test</scope>
24-
</dependency>
25-
<dependency>
26-
<groupId>org.projectlombok</groupId>
27-
<artifactId>lombok</artifactId>
28-
<scope>provided</scope>
29-
</dependency>
3019
<dependency>
3120
<groupId>com.h2database</groupId>
3221
<artifactId>h2</artifactId>

mybatis-plus-sample-crud/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter</artifactId>
1717
</dependency>
18-
<dependency>
19-
<groupId>org.springframework.boot</groupId>
20-
<artifactId>spring-boot-starter-test</artifactId>
21-
<scope>test</scope>
22-
</dependency>
23-
<dependency>
24-
<groupId>org.projectlombok</groupId>
25-
<artifactId>lombok</artifactId>
26-
<scope>provided</scope>
27-
</dependency>
2818
<dependency>
2919
<groupId>com.h2database</groupId>
3020
<artifactId>h2</artifactId>

mybatis-plus-sample-customize-basemapper/pom.xml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,12 @@
99
<version>0.0.1-SNAPSHOT</version>
1010
</parent>
1111
<artifactId>mybatis-plus-sample-customize-basemapper</artifactId>
12-
<version>0.0.1-SNAPSHOT</version>
13-
<name>mybatis-plus-sample-customize-basemapper</name>
14-
<url>http://maven.apache.org</url>
15-
<properties>
16-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
</properties>
12+
1813
<dependencies>
1914
<dependency>
2015
<groupId>org.springframework.boot</groupId>
2116
<artifactId>spring-boot-starter</artifactId>
2217
</dependency>
23-
<dependency>
24-
<groupId>org.springframework.boot</groupId>
25-
<artifactId>spring-boot-starter-test</artifactId>
26-
<scope>test</scope>
27-
</dependency>
28-
<dependency>
29-
<groupId>org.projectlombok</groupId>
30-
<artifactId>lombok</artifactId>
31-
<scope>provided</scope>
32-
</dependency>
3318
<dependency>
3419
<groupId>com.h2database</groupId>
3520
<artifactId>h2</artifactId>

mybatis-plus-sample-deluxe/pom.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@
1616
<groupId>org.springframework.boot</groupId>
1717
<artifactId>spring-boot-starter</artifactId>
1818
</dependency>
19-
<dependency>
20-
<groupId>org.springframework.boot</groupId>
21-
<artifactId>spring-boot-starter-test</artifactId>
22-
<scope>test</scope>
23-
</dependency>
24-
<dependency>
25-
<groupId>org.projectlombok</groupId>
26-
<artifactId>lombok</artifactId>
27-
<scope>provided</scope>
28-
</dependency>
2919
<dependency>
3020
<groupId>com.h2database</groupId>
3121
<artifactId>h2</artifactId>
Lines changed: 30 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,36 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<parent>
5-
<artifactId>mybatis-plus-samples</artifactId>
6-
<groupId>com.baomidou</groupId>
7-
<version>0.0.1-SNAPSHOT</version>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<artifactId>mybatis-plus-samples</artifactId>
6+
<groupId>com.baomidou</groupId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
1010

11-
<artifactId>mybatis-plus-sample-dts-rabbit</artifactId>
11+
<artifactId>mybatis-plus-sample-dts-rabbit</artifactId>
1212

13-
<dependencies>
14-
<dependency>
15-
<groupId>org.springframework.boot</groupId>
16-
<artifactId>spring-boot-starter-web</artifactId>
17-
</dependency>
18-
<dependency>
19-
<groupId>org.springframework.boot</groupId>
20-
<artifactId>spring-boot-starter-amqp</artifactId>
21-
</dependency>
22-
<dependency>
23-
<groupId>org.projectlombok</groupId>
24-
<artifactId>lombok</artifactId>
25-
<scope>provided</scope>
26-
</dependency>
27-
<dependency>
28-
<groupId>com.baomidou</groupId>
29-
<artifactId>mybatis-plus-dts</artifactId>
30-
</dependency>
31-
</dependencies>
13+
<dependencies>
14+
<dependency>
15+
<groupId>org.springframework.boot</groupId>
16+
<artifactId>spring-boot-starter-web</artifactId>
17+
</dependency>
18+
<dependency>
19+
<groupId>org.springframework.boot</groupId>
20+
<artifactId>spring-boot-starter-amqp</artifactId>
21+
</dependency>
22+
<dependency>
23+
<groupId>com.baomidou</groupId>
24+
<artifactId>mybatis-plus-dts</artifactId>
25+
</dependency>
26+
</dependencies>
3227

33-
<build>
34-
<plugins>
35-
<plugin>
36-
<groupId>org.springframework.boot</groupId>
37-
<artifactId>spring-boot-maven-plugin</artifactId>
38-
</plugin>
39-
</plugins>
40-
</build>
28+
<build>
29+
<plugins>
30+
<plugin>
31+
<groupId>org.springframework.boot</groupId>
32+
<artifactId>spring-boot-maven-plugin</artifactId>
33+
</plugin>
34+
</plugins>
35+
</build>
4136
</project>
Lines changed: 31 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,37 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<parent>
5-
<artifactId>mybatis-plus-samples</artifactId>
6-
<groupId>com.baomidou</groupId>
7-
<version>0.0.1-SNAPSHOT</version>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<artifactId>mybatis-plus-samples</artifactId>
6+
<groupId>com.baomidou</groupId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
1010

11-
<artifactId>mybatis-plus-sample-dynamic-tablename</artifactId>
11+
<artifactId>mybatis-plus-sample-dynamic-tablename</artifactId>
1212

13-
<dependencies>
14-
<dependency>
15-
<groupId>org.springframework.boot</groupId>
16-
<artifactId>spring-boot-starter</artifactId>
17-
</dependency>
18-
<dependency>
19-
<groupId>org.springframework.boot</groupId>
20-
<artifactId>spring-boot-starter-test</artifactId>
21-
<scope>test</scope>
22-
</dependency>
23-
<dependency>
24-
<groupId>org.projectlombok</groupId>
25-
<artifactId>lombok</artifactId>
26-
<scope>provided</scope>
27-
</dependency>
28-
<dependency>
29-
<groupId>com.h2database</groupId>
30-
<artifactId>h2</artifactId>
31-
<scope>runtime</scope>
32-
</dependency>
33-
<dependency>
34-
<groupId>com.baomidou</groupId>
35-
<artifactId>mybatis-plus-boot-starter</artifactId>
36-
</dependency>
37-
</dependencies>
13+
<dependencies>
14+
<dependency>
15+
<groupId>org.springframework.boot</groupId>
16+
<artifactId>spring-boot-starter</artifactId>
17+
</dependency>
18+
<dependency>
19+
<groupId>com.h2database</groupId>
20+
<artifactId>h2</artifactId>
21+
<scope>runtime</scope>
22+
</dependency>
23+
<dependency>
24+
<groupId>com.baomidou</groupId>
25+
<artifactId>mybatis-plus-boot-starter</artifactId>
26+
</dependency>
27+
</dependencies>
3828

39-
<build>
40-
<plugins>
41-
<plugin>
42-
<groupId>org.springframework.boot</groupId>
43-
<artifactId>spring-boot-maven-plugin</artifactId>
44-
</plugin>
45-
</plugins>
46-
</build>
29+
<build>
30+
<plugins>
31+
<plugin>
32+
<groupId>org.springframework.boot</groupId>
33+
<artifactId>spring-boot-maven-plugin</artifactId>
34+
</plugin>
35+
</plugins>
36+
</build>
4737
</project>

0 commit comments

Comments
 (0)