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

Declare a compile-only dependence on module org.apiguardian.api #2695

Merged
merged 1 commit into from
Aug 19, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Defines JUnit Jupiter API for writing tests.
*/
module org.junit.jupiter.api {
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.junit.platform.commons;
requires transitive org.opentest4j;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @provides org.junit.platform.engine.TestEngine
*/
module org.junit.jupiter.engine {
requires org.apiguardian.api;
requires static org.apiguardian.api;
requires org.junit.jupiter.api;
requires org.junit.platform.commons;
requires org.junit.platform.engine;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
module org.junit.jupiter.migrationsupport {
requires transitive junit; // 4
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.junit.jupiter.api;
requires org.junit.platform.commons;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @since 5.0
*/
module org.junit.jupiter.params {
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.junit.jupiter.api;
requires transitive org.junit.platform.commons;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
module org.junit.platform.commons {
requires java.logging;
requires java.management; // needed by RuntimeUtils to determine input arguments
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;

exports org.junit.platform.commons;
exports org.junit.platform.commons.annotation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @provides java.util.spi.ToolProvider
*/
module org.junit.platform.console {
requires org.apiguardian.api;
requires static org.apiguardian.api;
requires org.junit.platform.commons;
requires org.junit.platform.engine;
requires org.junit.platform.launcher;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @since 1.0
*/
module org.junit.platform.engine {
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.junit.platform.commons;
requires transitive org.opentest4j;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
module org.junit.platform.jfr {
requires jdk.jfr;
requires org.apiguardian.api;
requires static org.apiguardian.api;
requires org.junit.platform.engine;
requires org.junit.platform.launcher;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
module org.junit.platform.launcher {
requires transitive java.logging;
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.junit.platform.commons;
requires transitive org.junit.platform.engine;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
module org.junit.platform.reporting {
requires java.xml;
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires org.junit.platform.commons;
requires transitive org.junit.platform.engine;
requires transitive org.junit.platform.launcher;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
module org.junit.platform.runner {
requires transitive junit; // 4
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.junit.platform.launcher;
requires transitive org.junit.platform.suite.api;
requires org.junit.platform.suite.commons;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @since 1.0
*/
module org.junit.platform.suite.api {
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.junit.platform.commons;

exports org.junit.platform.suite.api;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @since 1.8
*/
module org.junit.platform.suite.commons {
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires org.junit.platform.suite.api;
requires org.junit.platform.commons;
requires org.junit.platform.engine;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @provides org.junit.platform.engine.TestEngine
*/
module org.junit.platform.suite.engine {
requires org.apiguardian.api;
requires static org.apiguardian.api;
requires org.junit.platform.suite.api;
requires org.junit.platform.suite.commons;
requires org.junit.platform.commons;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @uses org.junit.platform.engine.TestEngine
*/
module org.junit.platform.testkit {
requires transitive org.apiguardian.api;
requires static transitive org.apiguardian.api;
requires transitive org.assertj.core;
requires org.junit.platform.commons;
requires transitive org.junit.platform.engine;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
module org.junit.vintage.engine {
requires junit; // 4
requires org.apiguardian.api;
requires static org.apiguardian.api;
requires org.junit.platform.engine;

provides org.junit.platform.engine.TestEngine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exports org.junit.jupiter.api.function
exports org.junit.jupiter.api.io
exports org.junit.jupiter.api.parallel
requires java.base mandated
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.platform.commons transitive
requires org.opentest4j transitive
qualified opens org.junit.jupiter.api.condition to org.junit.platform.commons
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.junit.jupiter.engine@${jupiterVersion} jar:file:.+/junit-jupiter-engine-\d.+\.jar..module-info\.class
requires java.base mandated
requires org.apiguardian.api
requires org.apiguardian.api static
requires org.junit.jupiter.api
requires org.junit.platform.commons
requires org.junit.platform.engine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ exports org.junit.jupiter.migrationsupport.rules.adapter
exports org.junit.jupiter.migrationsupport.rules.member
requires java.base mandated
requires junit transitive
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.jupiter.api transitive
requires org.junit.platform.commons
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports org.junit.jupiter.params.converter
exports org.junit.jupiter.params.provider
exports org.junit.jupiter.params.support
requires java.base mandated
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.jupiter.api transitive
requires org.junit.platform.commons transitive
qualified opens org.junit.jupiter.params to org.junit.platform.commons
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ exports org.junit.platform.commons.support
requires java.base mandated
requires java.logging
requires java.management
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
qualified exports org.junit.platform.commons.logging to org.junit.jupiter.api org.junit.jupiter.engine org.junit.jupiter.migrationsupport org.junit.jupiter.params org.junit.platform.console org.junit.platform.engine org.junit.platform.launcher org.junit.platform.reporting org.junit.platform.runner org.junit.platform.suite.api org.junit.platform.suite.engine org.junit.platform.testkit org.junit.vintage.engine
qualified exports org.junit.platform.commons.util to org.junit.jupiter.api org.junit.jupiter.engine org.junit.jupiter.migrationsupport org.junit.jupiter.params org.junit.platform.console org.junit.platform.engine org.junit.platform.launcher org.junit.platform.reporting org.junit.platform.runner org.junit.platform.suite.api org.junit.platform.suite.commons org.junit.platform.suite.engine org.junit.platform.testkit org.junit.vintage.engine
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.junit.platform.console@${platformVersion} jar:file:.+/junit-platform-console-\d.+\.jar..module-info\.class
requires java.base mandated
requires org.apiguardian.api
requires org.apiguardian.api static
requires org.junit.platform.commons
requires org.junit.platform.engine
requires org.junit.platform.launcher
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ exports org.junit.platform.engine.support.discovery
exports org.junit.platform.engine.support.filter
exports org.junit.platform.engine.support.hierarchical
requires java.base mandated
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.platform.commons transitive
requires org.opentest4j transitive
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.junit.platform.jfr@${platformVersion} jar:file:.+/junit-platform-jfr-\d.+\.jar..module-info\.class
requires java.base mandated
requires jdk.jfr
requires org.apiguardian.api
requires org.apiguardian.api static
requires org.junit.platform.engine
requires org.junit.platform.launcher
provides org.junit.platform.launcher.LauncherDiscoveryListener with org.junit.platform.jfr.FlightRecordingDiscoveryListener
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports org.junit.platform.launcher.listeners
exports org.junit.platform.launcher.listeners.discovery
requires java.base mandated
requires java.logging transitive
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.platform.commons transitive
requires org.junit.platform.engine transitive
uses org.junit.platform.engine.TestEngine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ exports org.junit.platform.reporting.legacy
exports org.junit.platform.reporting.legacy.xml
requires java.base mandated
requires java.xml
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.platform.commons
requires org.junit.platform.engine transitive
requires org.junit.platform.launcher transitive
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.junit.platform.runner@${platformVersion} jar:file:.+/junit-platform-runner-\
exports org.junit.platform.runner
requires java.base mandated
requires junit transitive
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.platform.launcher transitive
requires org.junit.platform.suite.api transitive
requires org.junit.platform.suite.commons
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
org.junit.platform.suite.api@${platformVersion} jar:file:.+/junit-platform-suite-api-\d.+\.jar..module-info\.class
exports org.junit.platform.suite.api
requires java.base mandated
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.platform.commons transitive
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.junit.platform.suite.commons@${platformVersion} jar:file:.+/junit-platform-suite-commons-\d.+\.jar..module-info\.class
requires java.base mandated
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.junit.platform.commons
requires org.junit.platform.engine
requires org.junit.platform.launcher transitive
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.junit.platform.suite.engine@${platformVersion} jar:file:.+/junit-platform-suite-engine-\d.+\.jar..module-info\.class
requires java.base mandated
requires org.apiguardian.api
requires org.apiguardian.api static
requires org.junit.platform.commons
requires org.junit.platform.engine
requires org.junit.platform.launcher
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.junit.platform.testkit@${platformVersion} jar:file:.+/junit-platform-testkit-\d.+\.jar..module-info\.class
exports org.junit.platform.testkit.engine
requires java.base mandated
requires org.apiguardian.api transitive
requires org.apiguardian.api static transitive
requires org.assertj.core transitive
requires org.junit.platform.commons
requires org.junit.platform.engine transitive
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.junit.vintage.engine@${vintageVersion} jar:file:.+/junit-vintage-engine-\d.+\.jar..module-info\.class
requires java.base mandated
requires junit
requires org.apiguardian.api
requires org.apiguardian.api static
requires org.junit.platform.engine
provides org.junit.platform.engine.TestEngine with org.junit.vintage.engine.VintageTestEngine
contains org.junit.vintage.engine