Skip to content

Commit

Permalink
[AD-983] Updated JDBC version to 1.4.0 and dependencies. (#425)
Browse files Browse the repository at this point in the history
* [AD-983] Updated version and dependencies.

* Commit Code Coverage Badge

Co-authored-by: birschick-bq <[email protected]>
  • Loading branch information
Bruce Irschick and birschick-bq authored Oct 21, 2022
1 parent 008e9e1 commit 724fdda
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id 'com.github.hierynomus.license' version '0.16.1'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'org.kordamp.gradle.markdown' version '2.2.0'
id "de.undercouch.download" version "5.2.1"
id "de.undercouch.download" version "5.3.0"
id 'io.franzbecker.gradle-lombok' version '5.0.0'
id 'java-test-fixtures'
id 'maven-publish'
Expand Down Expand Up @@ -319,10 +319,10 @@ dependencies {
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-guava', version: '2.13.4'
implementation group: 'com.google.guava', name: 'guava', version: '31.1-jre'
implementation group: 'org.slf4j', name: 'slf4j-log4j12', version: '2.0.3'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.9'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.18.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.18.0'
implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.7.1'
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.10.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.19.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.19.0'
implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.7.2'
implementation group: 'com.jcraft', name: 'jsch', version: '0.1.55'
implementation group: 'org.apache.calcite', name: 'calcite-core', version: '1.32.0'
implementation group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
Expand All @@ -339,8 +339,8 @@ dependencies {
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.16'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.9.1'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.7.0'
testRuntimeOnly group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.4.11'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.8.0'
testRuntimeOnly group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.5.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.1'
Expand All @@ -350,7 +350,7 @@ dependencies {
testFixturesCompileOnly group: 'de.flapdoodle.embed', name: 'de.flapdoodle.embed.mongo', version: '3.4.11'
testFixturesCompileOnly 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testFixturesImplementation group: 'com.google.guava', name: 'guava', version: '29.0-jre'
testFixturesImplementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.5.0'
testFixturesImplementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.7.2'
testFixturesImplementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.2'
testFixturesImplementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.2'
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.gradle.warning.mode=all
MAJOR_VERSION=1
MINOR_VERSION=3
PATCH_VERSION=2
MINOR_VERSION=4
PATCH_VERSION=0
APPLICATION_NAME=Amazon DocumentDB JDBC Driver
# Comment out if not creating a beta version
#BETA_VERSION=1
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/documentdb-jdbc.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
default.application.name=Amazon DocumentDB JDBC Driver v1.3.2
default.application.name=Amazon DocumentDB JDBC Driver v1.4.0
4 changes: 2 additions & 2 deletions src/main/resources/project.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
driver.full.version=1.3.2
driver.full.version=1.4.0
driver.major.version=1
driver.minor.version=3
driver.minor.version=4

0 comments on commit 724fdda

Please sign in to comment.