Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update project dependencies #78

Merged
merged 1 commit into from
Nov 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
plugins {
// to check for updates run: ./gradlew dependencyUpdates -Drevision=release
id 'com.github.ben-manes.versions' version '0.27.0'
}
ext.currentVersion = '0.4.2-SNAPSHOT'
ext.lastRelease = '0.4.1'

Expand Down
12 changes: 6 additions & 6 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ description = "A test framework for black-box testing MicroProfile and JavaEE ap
dependencies {
compile group: 'javax.inject', name: 'javax.inject', version: '1'
compile 'org.junit.jupiter:junit-jupiter-api:5.5.1'
implementation group: 'cglib', name: 'cglib-nodep', version: '3.2.10'
implementation group: 'org.apache.cxf', name: 'cxf-rt-rs-client', version: '3.3.0'
implementation group: 'org.apache.cxf', name: 'cxf-rt-rs-extension-providers', version: '3.3.0'
implementation group: 'org.bitbucket.b_c', name: 'jose4j', version: '0.6.5'
implementation group: 'org.eclipse', name: 'yasson', version: '1.0.4'
implementation group: 'cglib', name: 'cglib-nodep', version: '3.3.0'
implementation group: 'org.apache.cxf', name: 'cxf-rt-rs-client', version: '3.3.4'
implementation group: 'org.apache.cxf', name: 'cxf-rt-rs-extension-providers', version: '3.3.4'
implementation group: 'org.bitbucket.b_c', name: 'jose4j', version: '0.7.0'
implementation group: 'org.eclipse', name: 'yasson', version: '1.0.5'
implementation group: 'org.glassfish', name: 'javax.json', version: '1.1.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

apply from: publishScript
4 changes: 2 additions & 2 deletions modules/testcontainers/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ description = "Extensions for using MicroShed Testing with Testcontainers for ma

dependencies {
compile project(':microshed-testing-core')
compile "org.testcontainers:junit-jupiter:1.12.1"
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.1'
compile 'org.testcontainers:junit-jupiter:1.12.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

apply from: publishScript
Expand Down
10 changes: 5 additions & 5 deletions sample-apps/everything-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ plugins {
}

dependencies {
providedCompile 'javax:javaee-api:8.0'
providedCompile 'javax:javaee-api:8.0.1'
providedCompile 'org.eclipse.microprofile:microprofile:2.1'
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.10.1'
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.11.1'
testCompile project(':microshed-testing-testcontainers')
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
testCompile 'org.testcontainers:mockserver:1.11.2'
testCompile 'org.mock-server:mockserver-client-java:5.5.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testCompile 'org.testcontainers:mockserver:1.12.3'
testCompile 'org.mock-server:mockserver-client-java:5.5.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

war.archiveName 'myservice.war'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<featureManager>
<feature>jaxrs-2.1</feature>
<feature>jsonb-1.0</feature>
<feature>mpHealth-1.0</feature>
<feature>mpConfig-1.3</feature>
<feature>mpRestClient-1.1</feature>
<feature>beanValidation-2.0</feature>
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/jaxrs-json/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ plugins {
}

dependencies {
providedCompile 'javax:javaee-api:8.0'
providedCompile 'javax:javaee-api:8.0.1'
providedCompile 'org.eclipse.microprofile:microprofile:2.1'
testCompile project(':microshed-testing-testcontainers')
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

war.archiveName 'myservice.war'
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/jaxrs-mpjwt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ plugins {
}

dependencies {
providedCompile 'javax:javaee-api:8.0'
providedCompile 'javax:javaee-api:8.0.1'
providedCompile 'org.eclipse.microprofile:microprofile:2.1'
testCompile project(':microshed-testing-testcontainers')
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

war.archiveName 'myservice.war'
Expand Down
8 changes: 4 additions & 4 deletions sample-apps/jdbc-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ configurations {
}

dependencies {
providedCompile 'javax:javaee-api:8.0'
providedCompile 'javax:javaee-api:8.0.1'
providedCompile 'org.eclipse.microprofile:microprofile:2.1'
testCompile "org.testcontainers:postgresql:1.12.0"
testCompile 'org.testcontainers:postgresql:1.12.3'
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
testCompile project(':microshed-testing-testcontainers')
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
postgres "org.postgresql:postgresql:42.2.5"
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
postgres 'org.postgresql:postgresql:42.2.8'
}

task copyDriver(type: Copy) {
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/liberty-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ plugins {
}

dependencies {
providedCompile 'javax:javaee-api:8.0'
providedCompile 'javax:javaee-api:8.0.1'
providedCompile 'org.eclipse.microprofile:microprofile:3.0'
testCompile project(':microshed-testing-testcontainers')
testCompile project(':microshed-testing-liberty')
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

war.archiveName 'myservice.war'
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/payara-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ plugins {
}

dependencies {
providedCompile 'javax:javaee-api:8.0'
providedCompile 'javax:javaee-api:8.0.1'
providedCompile 'org.eclipse.microprofile:microprofile:2.1'
testCompile project(':microshed-testing-testcontainers')
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

war.archiveName 'myservice.war'
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/wildfly-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ plugins {
}

dependencies {
providedCompile 'javax:javaee-api:8.0'
providedCompile 'javax:javaee-api:8.0.1'
providedCompile 'org.eclipse.microprofile:microprofile:2.1'
testCompile project(':microshed-testing-testcontainers')
testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.26'
testImplementation 'org.junit.jupiter:junit-jupiter:5.4.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.2'
}

war.archiveName 'myservice.war'
Expand Down