Skip to content

Commit 234797c

Browse files
author
Weasley
committed
update
1 parent b34a2e7 commit 234797c

File tree

4 files changed

+86
-28
lines changed

4 files changed

+86
-28
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Domain Driven Table [![Maven Central](https://img.shields.io/maven-central/v/io.
250250
<dependency>
251251
<groupId>io.github.weasley-j</groupId>
252252
<artifactId>mydtt-plus-spring-boot-starter</artifactId>
253-
<version>1.2.8</version>
253+
<version>1.2.9</version>
254254
</dependency>
255255
<!-- javadoc-scribe start -->
256256
<dependency>

mydtt-plus-spring-boot-starter-tests/mydtt-plus-spring-boot-2-x/pom.xml

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<!--<version>2.7.1</version>-->
9-
<version>2.3.12.RELEASE</version>
8+
<version>2.7.2</version>
9+
<!--<version>2.3.12.RELEASE</version>-->
1010
<relativePath/>
1111
</parent>
1212

@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>io.github.weasley-j</groupId>
2727
<artifactId>mydtt-plus-spring-boot-starter</artifactId>
28-
<version>1.2.8</version>
28+
<version>1.2.9</version>
2929
</dependency>
3030
<!-- javadoc-scribe start -->
3131
<dependency>
@@ -78,20 +78,20 @@
7878
<version>5.8.4</version>
7979
</dependency>
8080

81-
<!-- jdbc start -->
82-
<!-- db2 -->
81+
<!--jdbc start-->
82+
<!-- db2-jcc -->
8383
<dependency>
8484
<groupId>com.ibm.db2</groupId>
8585
<artifactId>jcc</artifactId>
8686
<scope>runtime</scope>
8787
</dependency>
88-
<!-- sqlserver -->
88+
<!-- mssql-jdbc -->
8989
<dependency>
9090
<groupId>com.microsoft.sqlserver</groupId>
9191
<artifactId>mssql-jdbc</artifactId>
9292
<scope>runtime</scope>
9393
</dependency>
94-
<!-- oracle -->
94+
<!-- ojdbc8 -->
9595
<dependency>
9696
<groupId>com.oracle.database.jdbc</groupId>
9797
<artifactId>ojdbc8</artifactId>
@@ -103,7 +103,7 @@
103103
<artifactId>mysql-connector-java</artifactId>
104104
<scope>runtime</scope>
105105
</dependency>
106-
<!-- mariadb -->
106+
<!-- mariadb -->
107107
<dependency>
108108
<groupId>org.mariadb.jdbc</groupId>
109109
<artifactId>mariadb-java-client</artifactId>
@@ -113,9 +113,30 @@
113113
<dependency>
114114
<groupId>org.postgresql</groupId>
115115
<artifactId>postgresql</artifactId>
116+
<version>42.3.6</version>
116117
<scope>runtime</scope>
117118
</dependency>
118-
<!-- jdbc end -->
119+
<!-- h2 -->
120+
<dependency>
121+
<groupId>com.h2database</groupId>
122+
<artifactId>h2</artifactId>
123+
<version>2.1.212</version>
124+
<scope>runtime</scope>
125+
</dependency>
126+
<!-- derby -->
127+
<dependency>
128+
<groupId>org.apache.derby</groupId>
129+
<artifactId>derby</artifactId>
130+
<scope>runtime</scope>
131+
</dependency>
132+
<!-- hsqldb -->
133+
<dependency>
134+
<groupId>org.hsqldb</groupId>
135+
<artifactId>hsqldb</artifactId>
136+
<scope>runtime</scope>
137+
</dependency>
138+
<!--jdbc end-->
139+
119140
</dependencies>
120141

121142
<build>

mydtt-plus-spring-boot-starter-tests/mydtt-plus-spring-boot-3-x/pom.xml

Lines changed: 38 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<!--<version>3.0.0-M3</version>-->
9-
<version>2.7.2</version>
8+
<version>3.0.0-M3</version>
109
<relativePath/>
1110
</parent>
1211

@@ -41,7 +40,7 @@
4140
<dependency>
4241
<groupId>io.github.weasley-j</groupId>
4342
<artifactId>mydtt-plus-spring-boot-starter</artifactId>
44-
<version>1.2.8</version>
43+
<version>1.2.9</version>
4544
</dependency>
4645
<!-- javadoc-scribe start -->
4746
<dependency>
@@ -52,7 +51,6 @@
5251
</dependency>
5352
<!-- javadoc-scribe end -->
5453

55-
<!-- mybatis -->
5654
<dependency>
5755
<groupId>org.mybatis.spring.boot</groupId>
5856
<artifactId>mybatis-spring-boot-starter</artifactId>
@@ -69,6 +67,16 @@
6967
<groupId>com.github.pagehelper</groupId>
7068
<artifactId>pagehelper-spring-boot-starter</artifactId>
7169
<version>1.4.3</version>
70+
<exclusions>
71+
<exclusion>
72+
<groupId>org.mybatis.spring.boot</groupId>
73+
<artifactId>mybatis-spring-boot-starter</artifactId>
74+
</exclusion>
75+
<exclusion>
76+
<groupId>com.github.jsqlparser</groupId>
77+
<artifactId>jsqlparser</artifactId>
78+
</exclusion>
79+
</exclusions>
7280
</dependency>
7381
<!--hutool-->
7482
<dependency>
@@ -82,20 +90,20 @@
8290
<version>2.0.2</version>
8391
</dependency>
8492

85-
<!-- jdbc start -->
86-
<!-- db2 -->
93+
<!--jdbc start-->
94+
<!-- db2-jcc -->
8795
<dependency>
8896
<groupId>com.ibm.db2</groupId>
8997
<artifactId>jcc</artifactId>
9098
<scope>runtime</scope>
9199
</dependency>
92-
<!-- sqlserver -->
100+
<!-- mssql-jdbc -->
93101
<dependency>
94102
<groupId>com.microsoft.sqlserver</groupId>
95103
<artifactId>mssql-jdbc</artifactId>
96104
<scope>runtime</scope>
97105
</dependency>
98-
<!-- oracle -->
106+
<!-- ojdbc8 -->
99107
<dependency>
100108
<groupId>com.oracle.database.jdbc</groupId>
101109
<artifactId>ojdbc8</artifactId>
@@ -107,7 +115,7 @@
107115
<artifactId>mysql-connector-java</artifactId>
108116
<scope>runtime</scope>
109117
</dependency>
110-
<!-- mariadb -->
118+
<!-- mariadb -->
111119
<dependency>
112120
<groupId>org.mariadb.jdbc</groupId>
113121
<artifactId>mariadb-java-client</artifactId>
@@ -117,9 +125,29 @@
117125
<dependency>
118126
<groupId>org.postgresql</groupId>
119127
<artifactId>postgresql</artifactId>
128+
<version>42.3.6</version>
120129
<scope>runtime</scope>
121130
</dependency>
122-
<!-- jdbc end -->
131+
<!-- h2 -->
132+
<dependency>
133+
<groupId>com.h2database</groupId>
134+
<artifactId>h2</artifactId>
135+
<version>2.1.212</version>
136+
<scope>runtime</scope>
137+
</dependency>
138+
<!-- derby -->
139+
<dependency>
140+
<groupId>org.apache.derby</groupId>
141+
<artifactId>derby</artifactId>
142+
<scope>runtime</scope>
143+
</dependency>
144+
<!-- hsqldb -->
145+
<dependency>
146+
<groupId>org.hsqldb</groupId>
147+
<artifactId>hsqldb</artifactId>
148+
<scope>runtime</scope>
149+
</dependency>
150+
<!--jdbc end-->
123151

124152
</dependencies>
125153

mydtt-plus-spring-boot-starter/pom.xml

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.7.1</version>
8+
<version>2.7.2</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111

1212
<groupId>io.github.weasley-j</groupId>
1313
<artifactId>mydtt-plus-spring-boot-starter</artifactId>
14-
<version>1.2.8</version>
14+
<version>1.2.9</version>
1515
<name>mydtt-plus-spring-boot-starter</name>
1616
<description>
1717
MyDtt-Plus is a starter of SpringBoot,I named it DTT, It's an object-oriented Java framework,
@@ -119,12 +119,6 @@
119119
<artifactId>commons-io</artifactId>
120120
<version>${commons-io.version}</version>
121121
</dependency>
122-
<!-- mybatis-plus -->
123-
<dependency>
124-
<groupId>com.baomidou</groupId>
125-
<artifactId>mybatis-plus-core</artifactId>
126-
<version>${mybatis-plus.version}</version>
127-
</dependency>
128122
<!-- javadoc-scribe start -->
129123
<!-- runtime javadoc library -->
130124
<dependency>
@@ -186,6 +180,21 @@
186180
</exclusion>
187181
</exclusions>
188182
</dependency>
183+
<dependency>
184+
<groupId>com.baomidou</groupId>
185+
<artifactId>mybatis-plus-core</artifactId>
186+
<version>${mybatis-plus.version}</version>
187+
<exclusions>
188+
<exclusion>
189+
<groupId>com.github.jsqlparser</groupId>
190+
<artifactId>jsqlparser</artifactId>
191+
</exclusion>
192+
<exclusion>
193+
<groupId>org.mybatis</groupId>
194+
<artifactId>mybatis</artifactId>
195+
</exclusion>
196+
</exclusions>
197+
</dependency>
189198
<!-- mybatis end-->
190199
<dependency>
191200
<groupId>com.github.jsqlparser</groupId>

0 commit comments

Comments
 (0)