Skip to content

Commit

Permalink
Server:APIJSONBoot 新增 IBM Db2 的 JDBC 依赖;提升版本号至 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TommyLemon committed May 31, 2020
1 parent 695c2ca commit d117c0b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
15 changes: 11 additions & 4 deletions APIJSON-Java-Server/APIJSONBoot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>apijson.boot</groupId>
<artifactId>apijson-boot</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
<packaging>jar</packaging>

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

Expand Down Expand Up @@ -63,6 +63,13 @@
<artifactId>jtds</artifactId>
<version>1.3.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.ibm.db2/jcc -->
<dependency>
<groupId>com.ibm.db2</groupId>
<artifactId>jcc</artifactId>
<version>11.5.0.0</version>
</dependency>

<!-- 没找到合适且稳定的 Oracle 的 JDBC Maven 依赖,已在 libs 目录放了对应的 jar 包来替代 -->

<dependency>
Expand Down Expand Up @@ -108,8 +115,8 @@
</snapshots>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<pluginRepositories>
Expand Down
4 changes: 2 additions & 2 deletions APIJSON-Java-Server/APIJSONFramework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>apijson.framework</groupId>
<artifactId>apijson-framework</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
<packaging>jar</packaging>

<name>APIJSONFramework</name>
Expand All @@ -26,7 +26,7 @@
<dependency>
<groupId>com.github.APIJSON</groupId>
<artifactId>apijson-orm</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down
2 changes: 1 addition & 1 deletion APIJSON-Java-Server/APIJSONORM/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>apijson.orm</groupId>
<artifactId>apijson-orm</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
<packaging>jar</packaging>

<name>APIJSONORM</name>
Expand Down

0 comments on commit d117c0b

Please sign in to comment.