Skip to content

Commit d117c0b

Browse files
committed
Server:APIJSONBoot 新增 IBM Db2 的 JDBC 依赖;提升版本号至 4.1.0
1 parent 695c2ca commit d117c0b

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

APIJSON-Java-Server/APIJSONBoot/pom.xml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>apijson.boot</groupId>
77
<artifactId>apijson-boot</artifactId>
8-
<version>4.0.0</version>
8+
<version>4.1.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>APIJSONBoot</name>
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>1.4.1.RELEASE</version> <!--改成 2.1.9 直接报错,找不到 mysql-connector-java 等 3 个驱动包 <version>2.1.9.RELEASE</version> -->
17+
<version>1.4.1.RELEASE</version> <!--改成 2.1.9 直接报错,找不到 mysql-connector-java 等 3 个驱动包 <version>2.1.9.RELEASE</version> -->
1818
<relativePath /> <!-- lookup parent from repository -->
1919
</parent>
2020

@@ -63,6 +63,13 @@
6363
<artifactId>jtds</artifactId>
6464
<version>1.3.1</version>
6565
</dependency>
66+
<!-- https://mvnrepository.com/artifact/com.ibm.db2/jcc -->
67+
<dependency>
68+
<groupId>com.ibm.db2</groupId>
69+
<artifactId>jcc</artifactId>
70+
<version>11.5.0.0</version>
71+
</dependency>
72+
6673
<!-- 没找到合适且稳定的 Oracle 的 JDBC Maven 依赖,已在 libs 目录放了对应的 jar 包来替代 -->
6774

6875
<dependency>
@@ -108,8 +115,8 @@
108115
</snapshots>
109116
</repository>
110117
<repository>
111-
<id>jitpack.io</id>
112-
<url>https://jitpack.io</url>
118+
<id>jitpack.io</id>
119+
<url>https://jitpack.io</url>
113120
</repository>
114121
</repositories>
115122
<pluginRepositories>

APIJSON-Java-Server/APIJSONFramework/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>apijson.framework</groupId>
77
<artifactId>apijson-framework</artifactId>
8-
<version>4.0.0</version>
8+
<version>4.1.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>APIJSONFramework</name>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>com.github.APIJSON</groupId>
2828
<artifactId>apijson-orm</artifactId>
29-
<version>4.0.0</version>
29+
<version>4.1.0</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>javax.servlet</groupId>

APIJSON-Java-Server/APIJSONORM/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>apijson.orm</groupId>
77
<artifactId>apijson-orm</artifactId>
8-
<version>4.0.0</version>
8+
<version>4.1.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>APIJSONORM</name>

0 commit comments

Comments
 (0)