From 0408e29c68d668a98b72ca9eb6e72b41f8cdbc6d Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Jul 21 2020 15:20:18 +0000 Subject: import junit5-5.6.0-1.module+el8.2.1+6727+059d025f --- diff --git a/.gitignore b/.gitignore index 81831f9..caf5369 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/junit5-5.4.0.tar.gz +SOURCES/junit5-5.6.0.tar.gz diff --git a/.junit5.metadata b/.junit5.metadata index 61cfe5d..bb14ab0 100644 --- a/.junit5.metadata +++ b/.junit5.metadata @@ -1 +1 @@ -18b78a3008ae862717aa01d6933f16495540f26b SOURCES/junit5-5.4.0.tar.gz +8017967c8ccd9cd74e2de557b18cd02715186a0d SOURCES/junit5-5.6.0.tar.gz diff --git a/SOURCES/0001-Allow-building-against-old-univocity-parsers.patch b/SOURCES/0001-Allow-building-against-old-univocity-parsers.patch new file mode 100644 index 0000000..4c694a3 --- /dev/null +++ b/SOURCES/0001-Allow-building-against-old-univocity-parsers.patch @@ -0,0 +1,25 @@ +From 0b862ac5e0964a31727d92f7260223f076203a93 Mon Sep 17 00:00:00 2001 +From: Mat Booth +Date: Wed, 13 May 2020 13:28:45 +0100 +Subject: [PATCH] Allow building against old univocity-parsers + +--- + .../org/junit/jupiter/params/provider/CsvParserFactory.java | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/junit-jupiter-params/src/main/java/org/junit/jupiter/params/provider/CsvParserFactory.java b/junit-jupiter-params/src/main/java/org/junit/jupiter/params/provider/CsvParserFactory.java +index d1463d5..147db97 100644 +--- a/junit-jupiter-params/src/main/java/org/junit/jupiter/params/provider/CsvParserFactory.java ++++ b/junit-jupiter-params/src/main/java/org/junit/jupiter/params/provider/CsvParserFactory.java +@@ -59,7 +59,7 @@ class CsvParserFactory { + String emptyValue) { + + CsvParserSettings settings = new CsvParserSettings(); +- settings.getFormat().setDelimiter(delimiter); ++ settings.getFormat().setDelimiter(delimiter.charAt(0)); + settings.getFormat().setLineSeparator(lineSeparator); + settings.getFormat().setQuote(quote); + settings.getFormat().setQuoteEscape(quote); +-- +2.26.2 + diff --git a/SOURCES/aggregator.pom b/SOURCES/aggregator.pom index 3129653..bb1dd8f 100644 --- a/SOURCES/aggregator.pom +++ b/SOURCES/aggregator.pom @@ -5,6 +5,7 @@ 1.0.0 pom + junit-bom junit-platform-commons junit-platform-console junit-platform-console-standalone diff --git a/SOURCES/junit-bom-5.6.0.pom b/SOURCES/junit-bom-5.6.0.pom new file mode 100644 index 0000000..c2c4659 --- /dev/null +++ b/SOURCES/junit-bom-5.6.0.pom @@ -0,0 +1,139 @@ + + + + + + + + 4.0.0 + org.junit + junit-bom + 5.6.0 + 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@heidelberg-mobil.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.6.0 + + + org.junit.jupiter + junit-jupiter-api + 5.6.0 + + + org.junit.jupiter + junit-jupiter-engine + 5.6.0 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.6.0 + + + org.junit.jupiter + junit-jupiter-params + 5.6.0 + + + org.junit.platform + junit-platform-commons + 1.6.0 + + + org.junit.platform + junit-platform-console + 1.6.0 + + + org.junit.platform + junit-platform-engine + 1.6.0 + + + org.junit.platform + junit-platform-launcher + 1.6.0 + + + org.junit.platform + junit-platform-reporting + 1.6.0 + + + org.junit.platform + junit-platform-runner + 1.6.0 + + + org.junit.platform + junit-platform-suite-api + 1.6.0 + + + org.junit.platform + junit-platform-testkit + 1.6.0 + + + org.junit.vintage + junit-vintage-engine + 5.6.0 + + + + diff --git a/SOURCES/junit-jupiter-api-5.4.0.pom b/SOURCES/junit-jupiter-api-5.4.0.pom deleted file mode 100644 index 47d1359..0000000 --- a/SOURCES/junit-jupiter-api-5.4.0.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - org.junit.jupiter - junit-jupiter-api - 5.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.opentest4j - opentest4j - 1.1.1 - compile - - - org.junit.platform - junit-platform-commons - 1.4.0 - compile - - - diff --git a/SOURCES/junit-jupiter-api-5.6.0.pom b/SOURCES/junit-jupiter-api-5.6.0.pom new file mode 100644 index 0000000..e42dcb2 --- /dev/null +++ b/SOURCES/junit-jupiter-api-5.6.0.pom @@ -0,0 +1,94 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter-api + 5.6.0 + JUnit Jupiter API + Module "junit-jupiter-api" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.opentest4j + opentest4j + 1.2.0 + compile + + + org.junit.platform + junit-platform-commons + 1.6.0 + compile + + + diff --git a/SOURCES/junit-jupiter-engine-5.4.0.pom b/SOURCES/junit-jupiter-engine-5.4.0.pom deleted file mode 100644 index 33e632a..0000000 --- a/SOURCES/junit-jupiter-engine-5.4.0.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - org.junit.jupiter - junit-jupiter-engine - 5.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.platform - junit-platform-engine - 1.4.0 - compile - - - org.junit.jupiter - junit-jupiter-api - 5.4.0 - compile - - - diff --git a/SOURCES/junit-jupiter-engine-5.6.0.pom b/SOURCES/junit-jupiter-engine-5.6.0.pom new file mode 100644 index 0000000..23b6a27 --- /dev/null +++ b/SOURCES/junit-jupiter-engine-5.6.0.pom @@ -0,0 +1,94 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter-engine + 5.6.0 + JUnit Jupiter Engine + Module "junit-jupiter-engine" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.platform + junit-platform-engine + 1.6.0 + compile + + + org.junit.jupiter + junit-jupiter-api + 5.6.0 + compile + + + diff --git a/SOURCES/junit-jupiter-migrationsupport-5.4.0.pom b/SOURCES/junit-jupiter-migrationsupport-5.4.0.pom deleted file mode 100644 index c3a2cec..0000000 --- a/SOURCES/junit-jupiter-migrationsupport-5.4.0.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - org.junit.jupiter - junit-jupiter-migrationsupport - 5.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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 - - - - junit - junit - 4.12 - compile - - - org.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.jupiter - junit-jupiter-api - 5.4.0 - compile - - - diff --git a/SOURCES/junit-jupiter-migrationsupport-5.6.0.pom b/SOURCES/junit-jupiter-migrationsupport-5.6.0.pom new file mode 100644 index 0000000..435d209 --- /dev/null +++ b/SOURCES/junit-jupiter-migrationsupport-5.6.0.pom @@ -0,0 +1,100 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter-migrationsupport + 5.6.0 + JUnit Jupiter Migration Support + Module "junit-jupiter-migrationsupport" 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@heidelberg-mobil.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 + + + + + junit + junit + 4.13 + + + org.junit + junit-bom + 5.6.0 + pom + import + + + + + + junit + junit + 4.13 + compile + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.jupiter + junit-jupiter-api + 5.6.0 + compile + + + diff --git a/SOURCES/junit-jupiter-params-5.4.0.pom b/SOURCES/junit-jupiter-params-5.4.0.pom deleted file mode 100644 index 961fc51..0000000 --- a/SOURCES/junit-jupiter-params-5.4.0.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - org.junit.jupiter - junit-jupiter-params - 5.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.jupiter - junit-jupiter-api - 5.4.0 - compile - - - diff --git a/SOURCES/junit-jupiter-params-5.6.0.pom b/SOURCES/junit-jupiter-params-5.6.0.pom new file mode 100644 index 0000000..2b14ceb --- /dev/null +++ b/SOURCES/junit-jupiter-params-5.6.0.pom @@ -0,0 +1,88 @@ + + + + + + + + 4.0.0 + org.junit.jupiter + junit-jupiter-params + 5.6.0 + JUnit Jupiter Params + Module "junit-jupiter-params" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.jupiter + junit-jupiter-api + 5.6.0 + compile + + + diff --git a/SOURCES/junit-platform-commons-1.4.0.pom b/SOURCES/junit-platform-commons-1.4.0.pom deleted file mode 100644 index c7d974e..0000000 --- a/SOURCES/junit-platform-commons-1.4.0.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-commons - 1.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - diff --git a/SOURCES/junit-platform-commons-1.6.0.pom b/SOURCES/junit-platform-commons-1.6.0.pom new file mode 100644 index 0000000..8571b54 --- /dev/null +++ b/SOURCES/junit-platform-commons-1.6.0.pom @@ -0,0 +1,83 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-commons + 1.6.0 + JUnit Platform Commons + Module "junit-platform-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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + diff --git a/SOURCES/junit-platform-console-1.4.0.pom b/SOURCES/junit-platform-console-1.4.0.pom deleted file mode 100644 index 0790402..0000000 --- a/SOURCES/junit-platform-console-1.4.0.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-console - 1.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.platform - junit-platform-reporting - 1.4.0 - compile - - - diff --git a/SOURCES/junit-platform-console-1.6.0.pom b/SOURCES/junit-platform-console-1.6.0.pom new file mode 100644 index 0000000..98a7c2b --- /dev/null +++ b/SOURCES/junit-platform-console-1.6.0.pom @@ -0,0 +1,89 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-console + 1.6.0 + JUnit Platform Console + Module "junit-platform-console" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.platform + junit-platform-reporting + 1.6.0 + compile + + + diff --git a/SOURCES/junit-platform-console-standalone-1.4.0.pom b/SOURCES/junit-platform-console-standalone-1.4.0.pom deleted file mode 100644 index 0aa299f..0000000 --- a/SOURCES/junit-platform-console-standalone-1.4.0.pom +++ /dev/null @@ -1,54 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-console-standalone - 1.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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 - - diff --git a/SOURCES/junit-platform-console-standalone-1.6.0.pom b/SOURCES/junit-platform-console-standalone-1.6.0.pom new file mode 100644 index 0000000..16e238f --- /dev/null +++ b/SOURCES/junit-platform-console-standalone-1.6.0.pom @@ -0,0 +1,64 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-console-standalone + 1.6.0 + JUnit Platform Console Standalone + Module "junit-platform-console-standalone" 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@heidelberg-mobil.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 + + diff --git a/SOURCES/junit-platform-engine-1.4.0.pom b/SOURCES/junit-platform-engine-1.4.0.pom deleted file mode 100644 index 974cbe0..0000000 --- a/SOURCES/junit-platform-engine-1.4.0.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-engine - 1.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.opentest4j - opentest4j - 1.1.1 - compile - - - org.junit.platform - junit-platform-commons - 1.4.0 - compile - - - diff --git a/SOURCES/junit-platform-engine-1.6.0.pom b/SOURCES/junit-platform-engine-1.6.0.pom new file mode 100644 index 0000000..de2ceb5 --- /dev/null +++ b/SOURCES/junit-platform-engine-1.6.0.pom @@ -0,0 +1,95 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-engine + 1.6.0 + JUnit Platform Engine API + Module "junit-platform-engine" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.opentest4j + opentest4j + 1.2.0 + compile + + + org.junit.platform + junit-platform-commons + 1.6.0 + compile + + + diff --git a/SOURCES/junit-platform-launcher-1.4.0.pom b/SOURCES/junit-platform-launcher-1.4.0.pom deleted file mode 100644 index ea3df9b..0000000 --- a/SOURCES/junit-platform-launcher-1.4.0.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-launcher - 1.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.platform - junit-platform-engine - 1.4.0 - compile - - - diff --git a/SOURCES/junit-platform-launcher-1.6.0.pom b/SOURCES/junit-platform-launcher-1.6.0.pom new file mode 100644 index 0000000..3744cc7 --- /dev/null +++ b/SOURCES/junit-platform-launcher-1.6.0.pom @@ -0,0 +1,89 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-launcher + 1.6.0 + JUnit Platform Launcher + Module "junit-platform-launcher" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.platform + junit-platform-engine + 1.6.0 + compile + + + diff --git a/SOURCES/junit-platform-reporting-1.4.0.pom b/SOURCES/junit-platform-reporting-1.4.0.pom deleted file mode 100644 index 3dc7c92..0000000 --- a/SOURCES/junit-platform-reporting-1.4.0.pom +++ /dev/null @@ -1,68 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-reporting - 1.4.0 - JUnit Platform Reporting - Module "junit-platform-reporting" of JUnit 5. - https://junit.org/junit5/ - - - Eclipse Public License v2.0 - http://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@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.platform - junit-platform-launcher - 1.4.0 - compile - - - diff --git a/SOURCES/junit-platform-reporting-1.6.0.pom b/SOURCES/junit-platform-reporting-1.6.0.pom new file mode 100644 index 0000000..9cde326 --- /dev/null +++ b/SOURCES/junit-platform-reporting-1.6.0.pom @@ -0,0 +1,89 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-reporting + 1.6.0 + JUnit Platform Reporting + Module "junit-platform-reporting" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.platform + junit-platform-launcher + 1.6.0 + compile + + + diff --git a/SOURCES/junit-platform-runner-1.4.0.pom b/SOURCES/junit-platform-runner-1.4.0.pom deleted file mode 100644 index 3811b38..0000000 --- a/SOURCES/junit-platform-runner-1.4.0.pom +++ /dev/null @@ -1,80 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-runner - 1.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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 - - - - junit - junit - 4.12 - compile - - - org.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.platform - junit-platform-launcher - 1.4.0 - compile - - - org.junit.platform - junit-platform-suite-api - 1.4.0 - compile - - - diff --git a/SOURCES/junit-platform-runner-1.6.0.pom b/SOURCES/junit-platform-runner-1.6.0.pom new file mode 100644 index 0000000..6ede803 --- /dev/null +++ b/SOURCES/junit-platform-runner-1.6.0.pom @@ -0,0 +1,106 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-runner + 1.6.0 + JUnit Platform Runner + Module "junit-platform-runner" 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@heidelberg-mobil.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 + + + + + junit + junit + 4.13 + + + org.junit + junit-bom + 5.6.0 + pom + import + + + + + + junit + junit + 4.13 + compile + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.platform + junit-platform-launcher + 1.6.0 + compile + + + org.junit.platform + junit-platform-suite-api + 1.6.0 + compile + + + diff --git a/SOURCES/junit-platform-suite-api-1.4.0.pom b/SOURCES/junit-platform-suite-api-1.4.0.pom deleted file mode 100644 index 8e5ce08..0000000 --- a/SOURCES/junit-platform-suite-api-1.4.0.pom +++ /dev/null @@ -1,62 +0,0 @@ - - - 4.0.0 - org.junit.platform - junit-platform-suite-api - 1.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - diff --git a/SOURCES/junit-platform-suite-api-1.6.0.pom b/SOURCES/junit-platform-suite-api-1.6.0.pom new file mode 100644 index 0000000..7ad4632 --- /dev/null +++ b/SOURCES/junit-platform-suite-api-1.6.0.pom @@ -0,0 +1,83 @@ + + + + + + + + 4.0.0 + org.junit.platform + junit-platform-suite-api + 1.6.0 + JUnit Platform Suite API + Module "junit-platform-suite-api" 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@heidelberg-mobil.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.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + diff --git a/SOURCES/junit-vintage-engine-5.4.0.pom b/SOURCES/junit-vintage-engine-5.4.0.pom deleted file mode 100644 index 8d7f870..0000000 --- a/SOURCES/junit-vintage-engine-5.4.0.pom +++ /dev/null @@ -1,74 +0,0 @@ - - - 4.0.0 - org.junit.vintage - junit-vintage-engine - 5.4.0 - 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 - - - - - bechte - Stefan Bechtold - stefan.bechtold@me.com - - - jlink - Johannes Link - business@johanneslink.net - - - marcphilipp - Marc Philipp - mail@marcphilipp.de - - - mmerdes - Matthias Merdes - Matthias.Merdes@heidelberg-mobil.com - - - sbrannen - Sam Brannen - sam@sambrannen.com - - - sormuras - Christian Stein - sormuras@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.apiguardian - apiguardian-api - 1.0.0 - compile - - - org.junit.platform - junit-platform-engine - 1.4.0 - compile - - - junit - junit - 4.12 - runtime - - - diff --git a/SOURCES/junit-vintage-engine-5.6.0.pom b/SOURCES/junit-vintage-engine-5.6.0.pom new file mode 100644 index 0000000..1c4e11f --- /dev/null +++ b/SOURCES/junit-vintage-engine-5.6.0.pom @@ -0,0 +1,100 @@ + + + + + + + + 4.0.0 + org.junit.vintage + junit-vintage-engine + 5.6.0 + JUnit Vintage Engine + Module "junit-vintage-engine" 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@heidelberg-mobil.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 + + + + + junit + junit + 4.13 + + + org.junit + junit-bom + 5.6.0 + pom + import + + + + + + org.apiguardian + apiguardian-api + 1.1.0 + compile + + + org.junit.platform + junit-platform-engine + 1.6.0 + compile + + + junit + junit + 4.13 + compile + + + diff --git a/SPECS/junit5.spec b/SPECS/junit5.spec index 3f85184..b94e2e5 100644 --- a/SPECS/junit5.spec +++ b/SPECS/junit5.spec @@ -8,7 +8,7 @@ %bcond_with console Name: junit5 -Version: 5.4.0 +Version: 5.6.0 Release: 1%{?dist} Summary: Java regression testing framework License: EPL-2.0 @@ -35,6 +35,11 @@ Source303: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-m 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 +# Bill of Materials POM +Source500: https://repo1.maven.org/maven2/org/junit/junit-bom/%{version}/junit-bom-%{version}.pom + +# SCL-specific patches +Patch100: 0001-Allow-building-against-old-univocity-parsers.patch BuildRequires: maven-local BuildRequires: mvn(com.univocity:univocity-parsers) @@ -73,6 +78,9 @@ JUnit 5 User Guide. %prep %setup -q -n %{name}-r%{version} + +# SCL-specific patches +%patch100 -p1 find -name \*.jar -delete cp -p %{SOURCE100} pom.xml @@ -89,6 +97,7 @@ 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 +cp -p %{SOURCE500} junit-bom/pom.xml for pom in $(find -mindepth 2 -name pom.xml); do # Set parent to aggregator @@ -143,6 +152,21 @@ ln -s ../../javadoc/junit5 documentation/src/docs/api %doc documentation/src/docs/* %changelog +* 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 + +* Sun Oct 13 2019 Fabio Valentini - 5.5.2-1 +- Update to 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 + +* Sat Jun 08 2019 Fabio Valentini - 5.4.2-1 +- Update to version 5.2.4. + * 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 @@ -177,4 +201,4 @@ ln -s ../../javadoc/junit5 documentation/src/docs/api - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Thu Sep 14 2017 Mikolaj Izdebski - 5.0.0-1 -- Initial packaging +- Initial packaging \ No newline at end of file