diff --git a/.gitignore b/.gitignore index 81831f9..64d0b34 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/junit5-5.4.0.tar.gz +SOURCES/junit5-5.10.2.tar.gz diff --git a/.junit5.metadata b/.junit5.metadata index 61cfe5d..60775d3 100644 --- a/.junit5.metadata +++ b/.junit5.metadata @@ -1 +1 @@ -18b78a3008ae862717aa01d6933f16495540f26b SOURCES/junit5-5.4.0.tar.gz +6243f53510959ec6c6bb98de0fd79174ac829637 SOURCES/junit5-5.10.2.tar.gz diff --git a/SOURCES/0001-Drop-transitive-requirement-on-apiguardian.patch b/SOURCES/0001-Drop-transitive-requirement-on-apiguardian.patch new file mode 100644 index 0000000..a69268d --- /dev/null +++ b/SOURCES/0001-Drop-transitive-requirement-on-apiguardian.patch @@ -0,0 +1,165 @@ +From 58cb1677c9e0f1bb77b66f5e304ba695678d510e Mon Sep 17 00:00:00 2001 +From: Marian Koncek +Date: Mon, 27 Feb 2023 14:39:29 +0100 +Subject: [PATCH 1/2] Drop transitive requirement on apiguardian + +--- + .../src/module/org.junit.jupiter.api/module-info.java | 2 +- + .../module/org.junit.jupiter.migrationsupport/module-info.java | 2 +- + .../src/module/org.junit.jupiter.params/module-info.java | 2 +- + .../src/module/org.junit.platform.commons/module-info.java | 2 +- + .../src/module/org.junit.platform.engine/module-info.java | 2 +- + .../src/module/org.junit.platform.launcher/module-info.java | 2 +- + .../src/module/org.junit.platform.reporting/module-info.java | 2 +- + .../src/module/org.junit.platform.runner/module-info.java | 2 +- + .../src/module/org.junit.platform.suite.api/module-info.java | 2 +- + .../module/org.junit.platform.suite.commons/module-info.java | 2 +- + .../src/module/org.junit.platform.testkit/module-info.java | 2 +- + 11 files changed, 11 insertions(+), 11 deletions(-) + +diff --git a/junit-jupiter-api/src/module/org.junit.jupiter.api/module-info.java b/junit-jupiter-api/src/module/org.junit.jupiter.api/module-info.java +index b6856c7..25a1523 100644 +--- a/junit-jupiter-api/src/module/org.junit.jupiter.api/module-info.java ++++ b/junit-jupiter-api/src/module/org.junit.jupiter.api/module-info.java +@@ -12,7 +12,7 @@ + * Defines JUnit Jupiter API for writing tests. + */ + module org.junit.jupiter.api { +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.junit.platform.commons; + requires transitive org.opentest4j; + +diff --git a/junit-jupiter-migrationsupport/src/module/org.junit.jupiter.migrationsupport/module-info.java b/junit-jupiter-migrationsupport/src/module/org.junit.jupiter.migrationsupport/module-info.java +index 3ace009..25a86fa 100644 +--- a/junit-jupiter-migrationsupport/src/module/org.junit.jupiter.migrationsupport/module-info.java ++++ b/junit-jupiter-migrationsupport/src/module/org.junit.jupiter.migrationsupport/module-info.java +@@ -15,7 +15,7 @@ + */ + module org.junit.jupiter.migrationsupport { + requires transitive junit; // 4 +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.junit.jupiter.api; + requires org.junit.platform.commons; + +diff --git a/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java b/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java +index 7f3ea05..572e8ed 100644 +--- a/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java ++++ b/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java +@@ -14,7 +14,7 @@ + * @since 5.0 + */ + module org.junit.jupiter.params { +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.junit.jupiter.api; + requires transitive org.junit.platform.commons; + +diff --git a/junit-platform-commons/src/module/org.junit.platform.commons/module-info.java b/junit-platform-commons/src/module/org.junit.platform.commons/module-info.java +index f33ffd3..c25315a 100644 +--- a/junit-platform-commons/src/module/org.junit.platform.commons/module-info.java ++++ b/junit-platform-commons/src/module/org.junit.platform.commons/module-info.java +@@ -16,7 +16,7 @@ + module org.junit.platform.commons { + requires java.logging; + requires java.management; // needed by RuntimeUtils to determine input arguments +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + + exports org.junit.platform.commons; + exports org.junit.platform.commons.annotation; +diff --git a/junit-platform-engine/src/module/org.junit.platform.engine/module-info.java b/junit-platform-engine/src/module/org.junit.platform.engine/module-info.java +index 0b6336c..6931626 100644 +--- a/junit-platform-engine/src/module/org.junit.platform.engine/module-info.java ++++ b/junit-platform-engine/src/module/org.junit.platform.engine/module-info.java +@@ -17,7 +17,7 @@ + * @since 1.0 + */ + module org.junit.platform.engine { +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.junit.platform.commons; + requires transitive org.opentest4j; + +diff --git a/junit-platform-launcher/src/module/org.junit.platform.launcher/module-info.java b/junit-platform-launcher/src/module/org.junit.platform.launcher/module-info.java +index 9501caf..c2fef28 100644 +--- a/junit-platform-launcher/src/module/org.junit.platform.launcher/module-info.java ++++ b/junit-platform-launcher/src/module/org.junit.platform.launcher/module-info.java +@@ -21,7 +21,7 @@ + */ + module org.junit.platform.launcher { + requires transitive java.logging; +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.junit.platform.commons; + requires transitive org.junit.platform.engine; + +diff --git a/junit-platform-reporting/src/module/org.junit.platform.reporting/module-info.java b/junit-platform-reporting/src/module/org.junit.platform.reporting/module-info.java +index 66c7494..2a6acd7 100644 +--- a/junit-platform-reporting/src/module/org.junit.platform.reporting/module-info.java ++++ b/junit-platform-reporting/src/module/org.junit.platform.reporting/module-info.java +@@ -15,7 +15,7 @@ + */ + module org.junit.platform.reporting { + requires java.xml; +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires org.junit.platform.commons; + requires transitive org.junit.platform.engine; + requires transitive org.junit.platform.launcher; +diff --git a/junit-platform-runner/src/module/org.junit.platform.runner/module-info.java b/junit-platform-runner/src/module/org.junit.platform.runner/module-info.java +index 47edeb1..4313c64 100644 +--- a/junit-platform-runner/src/module/org.junit.platform.runner/module-info.java ++++ b/junit-platform-runner/src/module/org.junit.platform.runner/module-info.java +@@ -16,7 +16,7 @@ + */ + module org.junit.platform.runner { + requires transitive junit; // 4 +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.junit.platform.launcher; + requires transitive org.junit.platform.suite.api; + requires org.junit.platform.suite.commons; +diff --git a/junit-platform-suite-api/src/module/org.junit.platform.suite.api/module-info.java b/junit-platform-suite-api/src/module/org.junit.platform.suite.api/module-info.java +index 9af8dae..cf50c08 100644 +--- a/junit-platform-suite-api/src/module/org.junit.platform.suite.api/module-info.java ++++ b/junit-platform-suite-api/src/module/org.junit.platform.suite.api/module-info.java +@@ -14,7 +14,7 @@ + * @since 1.0 + */ + module org.junit.platform.suite.api { +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.junit.platform.commons; + + exports org.junit.platform.suite.api; +diff --git a/junit-platform-suite-commons/src/module/org.junit.platform.suite.commons/module-info.java b/junit-platform-suite-commons/src/module/org.junit.platform.suite.commons/module-info.java +index b810efc..ccb6756 100644 +--- a/junit-platform-suite-commons/src/module/org.junit.platform.suite.commons/module-info.java ++++ b/junit-platform-suite-commons/src/module/org.junit.platform.suite.commons/module-info.java +@@ -14,7 +14,7 @@ + * @since 1.8 + */ + module org.junit.platform.suite.commons { +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires org.junit.platform.suite.api; + requires org.junit.platform.commons; + requires org.junit.platform.engine; +diff --git a/junit-platform-testkit/src/module/org.junit.platform.testkit/module-info.java b/junit-platform-testkit/src/module/org.junit.platform.testkit/module-info.java +index c0ae318..0d4cf42 100644 +--- a/junit-platform-testkit/src/module/org.junit.platform.testkit/module-info.java ++++ b/junit-platform-testkit/src/module/org.junit.platform.testkit/module-info.java +@@ -15,7 +15,7 @@ + * @uses org.junit.platform.engine.TestEngine + */ + module org.junit.platform.testkit { +- requires static transitive org.apiguardian.api; ++ requires static org.apiguardian.api; + requires transitive org.assertj.core; + requires org.junit.platform.commons; + requires transitive org.junit.platform.engine; +-- +2.39.2 + diff --git a/SOURCES/0002-Add-missing-module-static-requires.patch b/SOURCES/0002-Add-missing-module-static-requires.patch new file mode 100644 index 0000000..0eef828 --- /dev/null +++ b/SOURCES/0002-Add-missing-module-static-requires.patch @@ -0,0 +1,24 @@ +From 2f5ad4483784985a299e9ed28429bb52da21564d Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Mon, 27 Mar 2023 16:55:13 +0200 +Subject: [PATCH 2/2] Add missing module static requires + +--- + .../src/module/org.junit.jupiter.params/module-info.java | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java b/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java +index 572e8ed..90a3c3b 100644 +--- a/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java ++++ b/junit-jupiter-params/src/module/org.junit.jupiter.params/module-info.java +@@ -15,6 +15,7 @@ + */ + module org.junit.jupiter.params { + requires static org.apiguardian.api; ++ requires static univocity.parsers; + requires transitive org.junit.jupiter.api; + requires transitive org.junit.platform.commons; + +-- +2.39.2 + diff --git a/SOURCES/aggregator.pom b/SOURCES/aggregator.pom index 3129653..78c1be2 100644 --- a/SOURCES/aggregator.pom +++ b/SOURCES/aggregator.pom @@ -1,42 +1,79 @@ - + + 4.0.0 org.fedoraproject.xmvn.junit5 aggregator - 1.0.0 + any pom + + UTF-8 + + junit-bom + junit-jupiter + junit-jupiter-api + junit-jupiter-engine + junit-jupiter-migrationsupport + junit-jupiter-params junit-platform-commons junit-platform-console junit-platform-console-standalone junit-platform-engine junit-platform-launcher - junit-platform-reporting junit-platform-runner junit-platform-suite-api - junit-jupiter-api - junit-jupiter-engine - junit-jupiter-migrationsupport - junit-jupiter-params + junit-platform-suite-commons + junit-platform-testkit junit-vintage-engine - - maven-compiler-plugin - - 1.8 - 1.8 - - - + + org.apache.maven.plugins + maven-compiler-plugin + + + default-compile + + compile + + + 8 + + false + + **/module-info.java + + + + + module-info + + compile + + + 9 + + **/module-info.java + + + + + + maven-jar-plugin ${project.build.outputDirectory}/META-INF/MANIFEST.MF - + @@ -53,9 +90,9 @@ - ${osgi.bsn} - ${osgi.bsn} - <_nouses>true + ${osgi.bsn} + ${osgi.bsn} + <_nouses>true diff --git a/SOURCES/junit-bom-5.10.2.pom b/SOURCES/junit-bom-5.10.2.pom new file mode 100644 index 0000000..92e6e60 --- /dev/null +++ b/SOURCES/junit-bom-5.10.2.pom @@ -0,0 +1,159 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.10.2 + pom + JUnit 5 (Bill of Materials) + This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit.jupiter + junit-jupiter + 5.10.2 + + + org.junit.jupiter + junit-jupiter-api + 5.10.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.10.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.10.2 + + + org.junit.jupiter + junit-jupiter-params + 5.10.2 + + + org.junit.platform + junit-platform-commons + 1.10.2 + + + org.junit.platform + junit-platform-console + 1.10.2 + + + org.junit.platform + junit-platform-engine + 1.10.2 + + + org.junit.platform + junit-platform-jfr + 1.10.2 + + + org.junit.platform + junit-platform-launcher + 1.10.2 + + + org.junit.platform + junit-platform-reporting + 1.10.2 + + + org.junit.platform + junit-platform-runner + 1.10.2 + + + org.junit.platform + junit-platform-suite + 1.10.2 + + + org.junit.platform + junit-platform-suite-api + 1.10.2 + + + org.junit.platform + junit-platform-suite-commons + 1.10.2 + + + org.junit.platform + junit-platform-suite-engine + 1.10.2 + + + org.junit.platform + junit-platform-testkit + 1.10.2 + + + org.junit.vintage + junit-vintage-engine + 5.10.2 + + + + diff --git a/SOURCES/junit-jupiter-5.10.2.pom b/SOURCES/junit-jupiter-5.10.2.pom new file mode 100644 index 0000000..142a324 --- /dev/null +++ b/SOURCES/junit-jupiter-5.10.2.pom @@ -0,0 +1,95 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter + 5.10.2 + JUnit Jupiter (Aggregator) + Module "junit-jupiter" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.junit.jupiter + junit-jupiter-api + 5.10.2 + compile + + + org.junit.jupiter + junit-jupiter-params + 5.10.2 + compile + + + org.junit.jupiter + junit-jupiter-engine + 5.10.2 + runtime + + + diff --git a/SOURCES/junit-jupiter-api-5.4.0.pom b/SOURCES/junit-jupiter-api-5.10.2.pom similarity index 60% rename from SOURCES/junit-jupiter-api-5.4.0.pom rename to SOURCES/junit-jupiter-api-5.10.2.pom index 47d1359..e3af241 100644 --- a/SOURCES/junit-jupiter-api-5.4.0.pom +++ b/SOURCES/junit-jupiter-api-5.10.2.pom @@ -1,17 +1,21 @@ - + + + + + + 4.0.0 org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.10.2 JUnit Jupiter API Module "junit-jupiter-api" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +37,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,29 +49,45 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - - org.apiguardian - apiguardian-api - 1.0.0 - compile - org.opentest4j opentest4j - 1.1.1 + 1.3.0 compile org.junit.platform junit-platform-commons - 1.4.0 + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-jupiter-engine-5.4.0.pom b/SOURCES/junit-jupiter-engine-5.10.2.pom similarity index 60% rename from SOURCES/junit-jupiter-engine-5.4.0.pom rename to SOURCES/junit-jupiter-engine-5.10.2.pom index 33e632a..7d5b0eb 100644 --- a/SOURCES/junit-jupiter-engine-5.4.0.pom +++ b/SOURCES/junit-jupiter-engine-5.10.2.pom @@ -1,17 +1,21 @@ - + + + + + + 4.0.0 org.junit.jupiter junit-jupiter-engine - 5.4.0 + 5.10.2 JUnit Jupiter Engine Module "junit-jupiter-engine" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +37,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,29 +49,45 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - - org.apiguardian - apiguardian-api - 1.0.0 - compile - org.junit.platform junit-platform-engine - 1.4.0 + 1.10.2 compile org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-jupiter-migrationsupport-5.4.0.pom b/SOURCES/junit-jupiter-migrationsupport-5.10.2.pom similarity index 64% rename from SOURCES/junit-jupiter-migrationsupport-5.4.0.pom rename to SOURCES/junit-jupiter-migrationsupport-5.10.2.pom index c3a2cec..0a319bf 100644 --- a/SOURCES/junit-jupiter-migrationsupport-5.4.0.pom +++ b/SOURCES/junit-jupiter-migrationsupport-5.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.jupiter junit-jupiter-migrationsupport - 5.4.0 + 5.10.2 JUnit Jupiter Migration Support Module "junit-jupiter-migrationsupport" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,29 +50,45 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + junit junit - 4.12 - compile - - - org.apiguardian - apiguardian-api - 1.0.0 + 4.13.2 compile org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-jupiter-params-5.4.0.pom b/SOURCES/junit-jupiter-params-5.10.2.pom similarity index 59% rename from SOURCES/junit-jupiter-params-5.4.0.pom rename to SOURCES/junit-jupiter-params-5.10.2.pom index 961fc51..ef80af0 100644 --- a/SOURCES/junit-jupiter-params-5.4.0.pom +++ b/SOURCES/junit-jupiter-params-5.10.2.pom @@ -1,17 +1,21 @@ - + + + + + + 4.0.0 org.junit.jupiter junit-jupiter-params - 5.4.0 + 5.10.2 JUnit Jupiter Params Module "junit-jupiter-params" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +37,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,23 +49,39 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - - org.apiguardian - apiguardian-api - 1.0.0 - compile - org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-platform-commons-1.4.0.pom b/SOURCES/junit-platform-commons-1.10.2.pom similarity index 62% rename from SOURCES/junit-platform-commons-1.4.0.pom rename to SOURCES/junit-platform-commons-1.10.2.pom index c7d974e..5755787 100644 --- a/SOURCES/junit-platform-commons-1.4.0.pom +++ b/SOURCES/junit-platform-commons-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform junit-platform-commons - 1.4.0 + 1.10.2 JUnit Platform Commons Module "junit-platform-commons" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,17 +50,33 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.2 compile diff --git a/SOURCES/junit-platform-console-1.4.0.pom b/SOURCES/junit-platform-console-1.10.2.pom similarity index 63% rename from SOURCES/junit-platform-console-1.4.0.pom rename to SOURCES/junit-platform-console-1.10.2.pom index 0790402..1947bac 100644 --- a/SOURCES/junit-platform-console-1.4.0.pom +++ b/SOURCES/junit-platform-console-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform junit-platform-console - 1.4.0 + 1.10.2 JUnit Platform Console Module "junit-platform-console" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,23 +50,39 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - - org.apiguardian - apiguardian-api - 1.0.0 - compile - org.junit.platform junit-platform-reporting - 1.4.0 + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-platform-console-standalone-1.4.0.pom b/SOURCES/junit-platform-console-standalone-1.10.2.pom similarity index 68% rename from SOURCES/junit-platform-console-standalone-1.4.0.pom rename to SOURCES/junit-platform-console-standalone-1.10.2.pom index 0aa299f..fbfe038 100644 --- a/SOURCES/junit-platform-console-standalone-1.4.0.pom +++ b/SOURCES/junit-platform-console-standalone-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform junit-platform-console-standalone - 1.4.0 + 1.10.2 JUnit Platform Console Standalone Module "junit-platform-console-standalone" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,6 +50,11 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git diff --git a/SOURCES/junit-platform-engine-1.4.0.pom b/SOURCES/junit-platform-engine-1.10.2.pom similarity index 64% rename from SOURCES/junit-platform-engine-1.4.0.pom rename to SOURCES/junit-platform-engine-1.10.2.pom index 974cbe0..1d8a639 100644 --- a/SOURCES/junit-platform-engine-1.4.0.pom +++ b/SOURCES/junit-platform-engine-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform junit-platform-engine - 1.4.0 + 1.10.2 JUnit Platform Engine API Module "junit-platform-engine" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,29 +50,45 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - - org.apiguardian - apiguardian-api - 1.0.0 - compile - org.opentest4j opentest4j - 1.1.1 + 1.3.0 compile org.junit.platform junit-platform-commons - 1.4.0 + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-platform-launcher-1.4.0.pom b/SOURCES/junit-platform-launcher-1.10.2.pom similarity index 63% rename from SOURCES/junit-platform-launcher-1.4.0.pom rename to SOURCES/junit-platform-launcher-1.10.2.pom index ea3df9b..fd32bfe 100644 --- a/SOURCES/junit-platform-launcher-1.4.0.pom +++ b/SOURCES/junit-platform-launcher-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform junit-platform-launcher - 1.4.0 + 1.10.2 JUnit Platform Launcher Module "junit-platform-launcher" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,23 +50,39 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - - org.apiguardian - apiguardian-api - 1.0.0 - compile - org.junit.platform junit-platform-engine - 1.4.0 + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-platform-runner-1.4.0.pom b/SOURCES/junit-platform-runner-1.10.2.pom similarity index 61% rename from SOURCES/junit-platform-runner-1.4.0.pom rename to SOURCES/junit-platform-runner-1.10.2.pom index 3811b38..558f2c5 100644 --- a/SOURCES/junit-platform-runner-1.4.0.pom +++ b/SOURCES/junit-platform-runner-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform junit-platform-runner - 1.4.0 + 1.10.2 JUnit Platform Runner Module "junit-platform-runner" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,36 +50,58 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + junit junit - 4.12 - compile - - - org.apiguardian - apiguardian-api - 1.0.0 + 4.13.2 compile org.junit.platform junit-platform-launcher - 1.4.0 + 1.10.2 compile org.junit.platform junit-platform-suite-api - 1.4.0 + 1.10.2 compile + + org.apiguardian + apiguardian-api + 1.1.2 + compile + + + org.junit.platform + junit-platform-suite-commons + 1.10.2 + runtime + diff --git a/SOURCES/junit-platform-suite-api-1.4.0.pom b/SOURCES/junit-platform-suite-api-1.10.2.pom similarity index 58% rename from SOURCES/junit-platform-suite-api-1.4.0.pom rename to SOURCES/junit-platform-suite-api-1.10.2.pom index 8e5ce08..18314dd 100644 --- a/SOURCES/junit-platform-suite-api-1.4.0.pom +++ b/SOURCES/junit-platform-suite-api-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform junit-platform-suite-api - 1.4.0 + 1.10.2 JUnit Platform Suite API Module "junit-platform-suite-api" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,17 +50,39 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + org.junit.platform + junit-platform-commons + 1.10.2 + compile + org.apiguardian apiguardian-api - 1.0.0 + 1.1.2 compile diff --git a/SOURCES/junit-platform-suite-commons-1.10.2.pom b/SOURCES/junit-platform-suite-commons-1.10.2.pom new file mode 100644 index 0000000..3047f77 --- /dev/null +++ b/SOURCES/junit-platform-suite-commons-1.10.2.pom @@ -0,0 +1,101 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-suite-commons + 1.10.2 + JUnit Platform Suite Commons + Module "junit-platform-suite-commons" of JUnit 5. + https://junit.org/junit5/ + + + Eclipse Public License v2.0 + https://www.eclipse.org/legal/epl-v20.html + + + + + bechte + Stefan Bechtold + stefan.bechtold@me.com + + + jlink + Johannes Link + business@johanneslink.net + + + marcphilipp + Marc Philipp + mail@marcphilipp.de + + + mmerdes + Matthias Merdes + matthias.merdes@heidelpay.com + + + sbrannen + Sam Brannen + sam@sambrannen.com + + + sormuras + Christian Stein + sormuras@gmail.com + + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + + + + scm:git:git://github.com/junit-team/junit5.git + scm:git:git://github.com/junit-team/junit5.git + https://github.com/junit-team/junit5 + + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + + + + org.junit.platform + junit-platform-launcher + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 + compile + + + org.junit.platform + junit-platform-engine + 1.10.2 + runtime + + + org.junit.platform + junit-platform-suite-api + 1.10.2 + runtime + + + diff --git a/SOURCES/junit-platform-reporting-1.4.0.pom b/SOURCES/junit-platform-testkit-1.10.2.pom similarity index 52% rename from SOURCES/junit-platform-reporting-1.4.0.pom rename to SOURCES/junit-platform-testkit-1.10.2.pom index 3dc7c92..718d1fb 100644 --- a/SOURCES/junit-platform-reporting-1.4.0.pom +++ b/SOURCES/junit-platform-testkit-1.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.platform - junit-platform-reporting - 1.4.0 - JUnit Platform Reporting - Module "junit-platform-reporting" of JUnit 5. + junit-platform-testkit + 1.10.2 + JUnit Platform Test Kit + Module "junit-platform-testkit" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,23 +50,51 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - org.apiguardian - apiguardian-api - 1.0.0 + org.assertj + assertj-core + 3.24.2 + compile + + + org.opentest4j + opentest4j + 1.3.0 compile org.junit.platform junit-platform-launcher - 1.4.0 + 1.10.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 compile diff --git a/SOURCES/junit-vintage-engine-5.4.0.pom b/SOURCES/junit-vintage-engine-5.10.2.pom similarity index 63% rename from SOURCES/junit-vintage-engine-5.4.0.pom rename to SOURCES/junit-vintage-engine-5.10.2.pom index 8d7f870..e30fe36 100644 --- a/SOURCES/junit-vintage-engine-5.4.0.pom +++ b/SOURCES/junit-vintage-engine-5.10.2.pom @@ -1,17 +1,22 @@ - + + + + + 4.0.0 org.junit.vintage junit-vintage-engine - 5.4.0 + 5.10.2 JUnit Vintage Engine Module "junit-vintage-engine" of JUnit 5. https://junit.org/junit5/ Eclipse Public License v2.0 - http://www.eclipse.org/legal/epl-v20.html + https://www.eclipse.org/legal/epl-v20.html @@ -33,7 +38,7 @@ mmerdes Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com + matthias.merdes@heidelpay.com sbrannen @@ -45,30 +50,46 @@ Christian Stein sormuras@gmail.com + + juliette-derancourt + Juliette de Rancourt + derancourt.juliette@gmail.com + scm:git:git://github.com/junit-team/junit5.git scm:git:git://github.com/junit-team/junit5.git https://github.com/junit-team/junit5 + + + + org.junit + junit-bom + 5.10.2 + pom + import + + + - - org.apiguardian - apiguardian-api - 1.0.0 - compile - org.junit.platform junit-platform-engine - 1.4.0 + 1.10.2 compile junit junit - 4.12 - runtime + 4.13.2 + compile + + + org.apiguardian + apiguardian-api + 1.1.2 + compile diff --git a/SPECS/junit5.spec b/SPECS/junit5.spec index 3f85184..012117d 100644 --- a/SPECS/junit5.spec +++ b/SPECS/junit5.spec @@ -1,22 +1,19 @@ +%bcond_with bootstrap # Component versions, taken from gradle.properties %global platform_version 1.%(v=%{version}; echo ${v:2}) %global jupiter_version %{version} %global vintage_version %{version} -# Build with or without the console modules -# Disabled by default due to missing dep: info.picocli:picocli -%bcond_with console - Name: junit5 -Version: 5.4.0 -Release: 1%{?dist} +Version: 5.10.2 +Release: 13%{?dist} Summary: Java regression testing framework License: EPL-2.0 -URL: http://junit.org/junit5/ +URL: https://junit.org/junit5/ BuildArch: noarch +ExclusiveArch: %{java_arches} noarch Source0: https://github.com/junit-team/junit5/archive/r%{version}/junit5-%{version}.tar.gz - # Aggregator POM (used for packaging only) Source100: aggregator.pom # Platform POMs @@ -27,42 +24,42 @@ Source203: https://repo1.maven.org/maven2/org/junit/platform/junit-platform Source205: https://repo1.maven.org/maven2/org/junit/platform/junit-platform-launcher/%{platform_version}/junit-platform-launcher-%{platform_version}.pom Source206: https://repo1.maven.org/maven2/org/junit/platform/junit-platform-runner/%{platform_version}/junit-platform-runner-%{platform_version}.pom Source207: https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-api/%{platform_version}/junit-platform-suite-api-%{platform_version}.pom -Source208: https://repo1.maven.org/maven2/org/junit/platform/junit-platform-reporting/%{platform_version}/junit-platform-reporting-%{platform_version}.pom +Source209: https://repo1.maven.org/maven2/org/junit/platform/junit-platform-testkit/%{platform_version}/junit-platform-testkit-%{platform_version}.pom +Source210: https://repo1.maven.org/maven2/org/junit/platform/junit-platform-suite-commons/%{platform_version}/junit-platform-suite-commons-%{platform_version}.pom # Jupiter POMs +Source300: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter/%{jupiter_version}/junit-jupiter-%{jupiter_version}.pom Source301: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-api/%{jupiter_version}/junit-jupiter-api-%{jupiter_version}.pom Source302: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-engine/%{jupiter_version}/junit-jupiter-engine-%{jupiter_version}.pom Source303: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-migrationsupport/%{jupiter_version}/junit-jupiter-migrationsupport-%{jupiter_version}.pom Source304: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-params/%{jupiter_version}/junit-jupiter-params-%{jupiter_version}.pom # Vintage POM Source400: https://repo1.maven.org/maven2/org/junit/vintage/junit-vintage-engine/%{vintage_version}/junit-vintage-engine-%{vintage_version}.pom +# BOM POM +Source500: https://repo1.maven.org/maven2/org/junit/junit-bom/%{version}/junit-bom-%{version}.pom +Patch: 0001-Drop-transitive-requirement-on-apiguardian.patch +Patch: 0002-Add-missing-module-static-requires.patch + +%if %{with bootstrap} +BuildRequires: javapackages-bootstrap +%else BuildRequires: maven-local BuildRequires: mvn(com.univocity:univocity-parsers) BuildRequires: mvn(junit:junit) BuildRequires: mvn(org.apache.felix:maven-bundle-plugin) BuildRequires: mvn(org.apiguardian:apiguardian-api) +BuildRequires: mvn(org.assertj:assertj-core) BuildRequires: mvn(org.opentest4j:opentest4j) - -%if %{with console} -BuildRequires: mvn(info.picocli:picocli) -%endif - -BuildRequires: asciidoc - -%if %{with console} -# Explicit requires for javapackages-tools since junit5 script -# uses /usr/share/java-utils/java-functions -Requires: javapackages-tools %endif %description JUnit is a popular regression testing framework for Java platform. %package javadoc -Summary: Javadoc for %{name} +Summary: API documentation for %{name} %description javadoc -Junit5 API documentation. +API documentation for %{name}. %package guide Summary: Documentation for %{name} @@ -72,68 +69,51 @@ Requires: %{name}-javadoc = %{version}-%{release} JUnit 5 User Guide. %prep -%setup -q -n %{name}-r%{version} -find -name \*.jar -delete +%autosetup -p1 -n %{name}-r%{version} +find -name '*.jar' -delete + cp -p %{SOURCE100} pom.xml -cp -p %{SOURCE200} junit-platform-commons/pom.xml -cp -p %{SOURCE201} junit-platform-console/pom.xml -cp -p %{SOURCE202} junit-platform-console-standalone/pom.xml -cp -p %{SOURCE203} junit-platform-engine/pom.xml -cp -p %{SOURCE205} junit-platform-launcher/pom.xml -cp -p %{SOURCE206} junit-platform-runner/pom.xml -cp -p %{SOURCE207} junit-platform-suite-api/pom.xml -cp -p %{SOURCE208} junit-platform-reporting/pom.xml -cp -p %{SOURCE301} junit-jupiter-api/pom.xml -cp -p %{SOURCE302} junit-jupiter-engine/pom.xml -cp -p %{SOURCE303} junit-jupiter-migrationsupport/pom.xml -cp -p %{SOURCE304} junit-jupiter-params/pom.xml -cp -p %{SOURCE400} junit-vintage-engine/pom.xml -for pom in $(find -mindepth 2 -name pom.xml); do - # Set parent to aggregator - %pom_xpath_inject pom:project "org.fedoraproject.xmvn.junit5aggregator1.0.0" $pom - # OSGi BSN - bsn=$(sed 's|/pom.xml$||;s|.*/|org.|;s|-|.|g' <<<"$pom") - %pom_xpath_inject pom:project "${bsn}" $pom - # Incorrect scope - API guardian is just annotation, needed only during compilation - %pom_xpath_set -f "pom:dependency[pom:artifactId='apiguardian-api']/pom:scope" provided $pom +for source in $(echo %{sources} | cut -d ' ' -f3-); do + module=${source} + module=${module##*/} + module=${module%%-*} + if [ -d ${module}/src/module ]; then + mkdir -p ${module}/src/main/java + mv -t ${module}/src/main/java ${module}/src/module/*/module-info.java + fi + cp -p ${source} ${module}/pom.xml + %pom_add_parent org.fedoraproject.xmvn.junit5:aggregator:any ${module} + # OSGi BSN + bsn=org.${module//-/.} + %pom_xpath_inject pom:project "${bsn}" ${module} + # Incorrect scope - API guardian is just annotation, needed only during compilation + %pom_xpath_set -f "pom:dependency[pom:artifactId='apiguardian-api']/pom:scope" provided ${module} + %pom_xpath_set -f "pom:dependency[pom:scope='runtime']/pom:scope" compile ${module} done +%pom_remove_parent junit-bom + # Add deps which are shaded by upstream and therefore not present in POMs. %pom_add_dep net.sf.jopt-simple:jopt-simple:5.0.4 junit-platform-console %pom_add_dep com.univocity:univocity-parsers:2.5.4 junit-jupiter-params -# Incorrect scope - Junit4 is needed for compilation too, not only runtime. -%pom_xpath_set "pom:dependency[pom:artifactId='junit']/pom:scope" compile junit-vintage-engine - -%if %{without console} # Disable the console modules %pom_disable_module junit-platform-console %pom_disable_module junit-platform-console-standalone -%endif %mvn_package :aggregator __noinstall %build %mvn_build -f -# Build docs. Ignore exit asciidoc -- it fails for some reason, but -# still produces readable docs. -asciidoc documentation/src/docs/asciidoc/index.adoc || : ln -s ../../javadoc/junit5 documentation/src/docs/api %install %mvn_install -%if %{with console} -%jpackage_script org/junit/platform/console/ConsoleLauncher "" "" junit5:junit:opentest4j:jopt-simple %{name} true -%endif - %files -f .mfiles -%if %{with console} -%{_bindir}/%{name} -%endif %license LICENSE.md LICENSE-notice.md %files javadoc -f .mfiles-javadoc @@ -143,6 +123,130 @@ ln -s ../../javadoc/junit5 documentation/src/docs/api %doc documentation/src/docs/* %changelog +* Fri Nov 29 2024 Mikolaj Izdebski - 5.10.2-11 +- Update javapackages test plan to f42 + +* Thu Sep 19 2024 Mikolaj Izdebski - 5.10.2-10 +- Disable asciidoc generation + +* Thu Jul 18 2024 Fedora Release Engineering - 5.10.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Fri May 31 2024 Mikolaj Izdebski - 5.10.2-3 +- Switch to a newer patch macro syntax + +* Tue Feb 27 2024 Jiri Vanek - 5.10.2-2 +- Rebuilt for java-21-openjdk as system jdk + +* Tue Feb 06 2024 Mikolaj Izdebski - 5.10.2-1 +- Update to upstream version 5.10.2 + +* Thu Feb 01 2024 Mikolaj Izdebski - 5.10.1-1 +- Update to upstream version 5.10.1 + +* Wed Jan 24 2024 Fedora Release Engineering - 5.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jan 20 2024 Fedora Release Engineering - 5.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Aug 18 2023 Mikolaj Izdebski - 5.10.0-1 +- Update to upstream version 5.10.0 + +* Thu Jul 20 2023 Fedora Release Engineering - 5.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Feb 23 2023 Marian Koncek - 5.9.0-3 +- Enable module-info generation + +* Thu Jan 19 2023 Fedora Release Engineering - 5.9.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Wed Sep 07 2022 Marian Koncek - 5.9.0-1 +- Update to upstream version 5.9.0 + +* Thu Jul 21 2022 Fedora Release Engineering - 5.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Fri Apr 22 2022 Mikolaj Izdebski - 5.8.2-1 +- Update to upstream version 5.8.2 + +* Sat Feb 05 2022 Jiri Vanek - 5.7.1-5 +- Rebuilt for java-17-openjdk as system jdk + +* Thu Jan 20 2022 Fedora Release Engineering - 5.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jul 22 2021 Fedora Release Engineering - 5.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Mon May 17 2021 Mikolaj Izdebski - 5.7.1-2 +- Bootstrap build +- Non-bootstrap build + +* Fri May 14 2021 Marian Koncek - 5.7.1-1 +- Update to upstream version 5.7.1 + +* Fri Feb 19 2021 Mat Booth - 5.7.1-1 +- Update to latest upstream release + +* Tue Jan 26 2021 Fedora Release Engineering - 5.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Oct 24 2020 Fabio Valentini - 5.7.0-1 +- Update to version 5.7.0. + +* Mon Sep 21 2020 Marian Koncek - 5.7.0-1 +- Update to upstream version 5.7.0 + +* Tue Aug 11 2020 Jerry James - 5.6.2-4 +- Add org.junit.jupiter:junit-jupiter, org.junit.platform:junit-platform-testkit + +* Tue Jul 28 2020 Fedora Release Engineering - 5.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 28 2020 Marian Koncek - 5.6.2-1 +- Update to upstream version 5.6.2 + +* Fri Jul 10 2020 Jiri Vanek - 5.6.2-2 +- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 + +* Sat May 09 2020 Fabio Valentini - 5.6.2-1 +- Update to version 5.6.2. + +* Wed Mar 04 2020 Marian Koncek - 5.6.0-1 +- Update to upstream version 5.6.0 + +* Mon Feb 17 2020 Alexander Scheel - 5.6.0-1 +- Update to version 5.6.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 5.5.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Nov 05 2019 Mikolaj Izdebski - 5.5.2-3 +- Mass rebuild for javapackages-tools 201902 + +* Mon Oct 28 2019 Mikolaj Izdebski - 5.5.2-2 +- Build and install junit-jupiter aggregator + +* Sun Oct 13 2019 Fabio Valentini - 5.5.2-1 +- Update to version 5.5.2. + +* Wed Sep 11 2019 Marian Koncek - 5.5.2-1 +- Update to upstream version 5.5.2 + +* Thu Jul 25 2019 Fedora Release Engineering - 5.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Mon Jul 22 2019 Marian Koncek - 5.5.1-1 +- Update to upstream version 5.5.1 + +* Sat Jun 08 2019 Fabio Valentini - 5.4.2-1 +- Update to version 5.4.2 + +* Fri May 24 2019 Mikolaj Izdebski - 5.4.0-2 +- Mass rebuild for javapackages-tools 201901 + * Wed Mar 06 2019 Mat Booth - 5.4.0-1 - Update to latest upstream release - License switched to EPL only now the surefire provider was moved to the