Skip to content

Commit

Permalink
integrate latest dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Jul 21, 2022
1 parent bf8a7fc commit 6c4d6ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
4 changes: 3 additions & 1 deletion bundles/jakarta.json/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -16,6 +16,8 @@

module jakarta.json {

requires java.logging;

exports jakarta.json;
exports jakarta.json.spi;
exports jakarta.json.stream;
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@
<spotbugs.threshold>Low</spotbugs.threshold>
<spotbugs.version>4.7.1.0</spotbugs.version>

<jakarta.json-api.version>2.1.0</jakarta.json-api.version>
<jakarta.json-api.version>2.1.1</jakarta.json-api.version>

<jakarta.annotation-api.version>2.0.0</jakarta.annotation-api.version>
<jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version>
<jakarta.ws.rs-api.version>3.0.0</jakarta.ws.rs-api.version>
<jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version>
<jakarta.xml.bind-api.version>4.0.0</jakarta.xml.bind-api.version>
<jakarta.ws.rs-api.version>3.1.0</jakarta.ws.rs-api.version>
</properties>

<build>
Expand Down
5 changes: 2 additions & 3 deletions tck-impl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ configurations {
}

dependencies {
tckTests("jakarta.json:jakarta.json-tck-tests:2.1.0")
tckTests("jakarta.json:jakarta.json-tck-tests:2.1.1")
sigTests("org.netbeans.tools:sigtest-maven-plugin:1.6")
pluggabilityTests("jakarta.json:jakarta.json-tck-tests-pluggability:2.1.0")
pluggabilityTests("jakarta.json:jakarta.json-tck-tests-pluggability:2.1.1")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
}

Expand All @@ -62,7 +62,6 @@ if (hasProperty("parsson.home")) {
List<TestDescriptor> failures = new ArrayList<>()

tasks.withType(Test) {
forkEvery 1
systemProperty 'java.awt.headless', 'true'
// listen to events in the test execution lifecycle
beforeTest { descriptor ->
Expand Down

0 comments on commit 6c4d6ab

Please sign in to comment.