diff --git a/bundles/jakarta.json/src/main/java/module-info.java b/bundles/jakarta.json/src/main/java/module-info.java index c3260912..0423b317 100644 --- a/bundles/jakarta.json/src/main/java/module-info.java +++ b/bundles/jakarta.json/src/main/java/module-info.java @@ -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 @@ -16,6 +16,8 @@ module jakarta.json { + requires java.logging; + exports jakarta.json; exports jakarta.json.spi; exports jakarta.json.stream; diff --git a/pom.xml b/pom.xml index 172a18e4..4eae7399 100644 --- a/pom.xml +++ b/pom.xml @@ -96,11 +96,11 @@ Low 4.7.1.0 - 2.1.0 + 2.1.1 - 2.0.0 - 3.0.1 - 3.0.0 + 2.1.1 + 4.0.0 + 3.1.0 diff --git a/tck-impl/build.gradle b/tck-impl/build.gradle index f54240c5..69a96e56 100644 --- a/tck-impl/build.gradle +++ b/tck-impl/build.gradle @@ -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") } @@ -62,7 +62,6 @@ if (hasProperty("parsson.home")) { List failures = new ArrayList<>() tasks.withType(Test) { - forkEvery 1 systemProperty 'java.awt.headless', 'true' // listen to events in the test execution lifecycle beforeTest { descriptor ->