Skip to content

Commit

Permalink
Revise module declarations of "org.junit.vintage" group
Browse files Browse the repository at this point in the history
Issue #2063
  • Loading branch information
sormuras committed Dec 20, 2019
1 parent 2c361f1 commit 2af5ed2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Expand Up @@ -8,10 +8,16 @@
* https://www.eclipse.org/legal/epl-v20.html
*/

/**
* JUnit Vintage provides a {@linkplain TestEngine} for running JUnit 3 and 4 based tests on the platform.
*
* @moduleGraph
* @since 5.5.0
*/
module org.junit.vintage.engine {
requires transitive junit; // 4
requires transitive org.apiguardian.api;
requires transitive org.junit.platform.engine;
requires junit; // 4
requires org.apiguardian.api;
requires org.junit.platform.engine;

provides org.junit.platform.engine.TestEngine
with org.junit.vintage.engine.VintageTestEngine;
Expand Down
@@ -1,7 +1,7 @@
org.junit.vintage.engine@${vintageVersion} jar:file:.+junit-vintage-engine/build/libs/junit-vintage-engine-${jupiterVersion}.jar/!module-info.class
requires java.base mandated
requires junit transitive
requires org.apiguardian.api transitive
requires org.junit.platform.engine transitive
requires junit
requires org.apiguardian.api
requires org.junit.platform.engine
provides org.junit.platform.engine.TestEngine with org.junit.vintage.engine.VintageTestEngine
contains org.junit.vintage.engine

0 comments on commit 2af5ed2

Please sign in to comment.