From f9f465f40a22a16321d3532a54637f85c7f210dd Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 21 Jul 2020 11:20:18 -0400 Subject: [PATCH] import junit5-5.6.0-1.module+el8.2.1+6727+059d025f --- .gitignore | 2 +- .junit5.metadata | 2 +- ...ilding-against-old-univocity-parsers.patch | 25 ++++ SOURCES/aggregator.pom | 1 + SOURCES/junit-bom-5.6.0.pom | 139 ++++++++++++++++++ ...-5.4.0.pom => junit-jupiter-api-5.6.0.pom} | 34 ++++- ...4.0.pom => junit-jupiter-engine-5.6.0.pom} | 34 ++++- ... junit-jupiter-migrationsupport-5.6.0.pom} | 36 ++++- ...4.0.pom => junit-jupiter-params-5.6.0.pom} | 32 +++- ...0.pom => junit-platform-commons-1.6.0.pom} | 27 +++- ...0.pom => junit-platform-console-1.6.0.pom} | 29 +++- ...nit-platform-console-standalone-1.6.0.pom} | 14 +- ....0.pom => junit-platform-engine-1.6.0.pom} | 31 +++- ....pom => junit-platform-launcher-1.6.0.pom} | 29 +++- ...pom => junit-platform-reporting-1.6.0.pom} | 29 +++- ....0.pom => junit-platform-runner-1.6.0.pom} | 38 ++++- ...pom => junit-platform-suite-api-1.6.0.pom} | 27 +++- ...4.0.pom => junit-vintage-engine-5.6.0.pom} | 38 ++++- SPECS/junit5.spec | 28 +++- 19 files changed, 529 insertions(+), 66 deletions(-) create mode 100644 SOURCES/0001-Allow-building-against-old-univocity-parsers.patch create mode 100644 SOURCES/junit-bom-5.6.0.pom rename SOURCES/{junit-jupiter-api-5.4.0.pom => junit-jupiter-api-5.6.0.pom} (62%) rename SOURCES/{junit-jupiter-engine-5.4.0.pom => junit-jupiter-engine-5.6.0.pom} (62%) rename SOURCES/{junit-jupiter-migrationsupport-5.4.0.pom => junit-jupiter-migrationsupport-5.6.0.pom} (66%) rename SOURCES/{junit-jupiter-params-5.4.0.pom => junit-jupiter-params-5.6.0.pom} (61%) rename SOURCES/{junit-platform-commons-1.4.0.pom => junit-platform-commons-1.6.0.pom} (67%) rename SOURCES/{junit-platform-console-1.4.0.pom => junit-platform-console-1.6.0.pom} (68%) rename SOURCES/{junit-platform-console-standalone-1.4.0.pom => junit-platform-console-standalone-1.6.0.pom} (74%) rename SOURCES/{junit-platform-engine-1.4.0.pom => junit-platform-engine-1.6.0.pom} (69%) rename SOURCES/{junit-platform-launcher-1.4.0.pom => junit-platform-launcher-1.6.0.pom} (68%) rename SOURCES/{junit-platform-reporting-1.4.0.pom => junit-platform-reporting-1.6.0.pom} (68%) rename SOURCES/{junit-platform-runner-1.4.0.pom => junit-platform-runner-1.6.0.pom} (66%) rename SOURCES/{junit-platform-suite-api-1.4.0.pom => junit-platform-suite-api-1.6.0.pom} (67%) rename SOURCES/{junit-vintage-engine-5.4.0.pom => junit-vintage-engine-5.6.0.pom} (65%) 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.6.0.pom similarity index 62% rename from SOURCES/junit-jupiter-api-5.4.0.pom rename to SOURCES/junit-jupiter-api-5.6.0.pom index 47d1359..e42dcb2 100644 --- a/SOURCES/junit-jupiter-api-5.4.0.pom +++ b/SOURCES/junit-jupiter-api-5.6.0.pom @@ -1,17 +1,21 @@ - + + + + + + 4.0.0 org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.opentest4j opentest4j - 1.1.1 + 1.2.0 compile org.junit.platform junit-platform-commons - 1.4.0 + 1.6.0 compile diff --git a/SOURCES/junit-jupiter-engine-5.4.0.pom b/SOURCES/junit-jupiter-engine-5.6.0.pom similarity index 62% rename from SOURCES/junit-jupiter-engine-5.4.0.pom rename to SOURCES/junit-jupiter-engine-5.6.0.pom index 33e632a..23b6a27 100644 --- a/SOURCES/junit-jupiter-engine-5.4.0.pom +++ b/SOURCES/junit-jupiter-engine-5.6.0.pom @@ -1,17 +1,21 @@ - + + + + + + 4.0.0 org.junit.jupiter junit-jupiter-engine - 5.4.0 + 5.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.platform junit-platform-engine - 1.4.0 + 1.6.0 compile org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.6.0 compile diff --git a/SOURCES/junit-jupiter-migrationsupport-5.4.0.pom b/SOURCES/junit-jupiter-migrationsupport-5.6.0.pom similarity index 66% rename from SOURCES/junit-jupiter-migrationsupport-5.4.0.pom rename to SOURCES/junit-jupiter-migrationsupport-5.6.0.pom index c3a2cec..435d209 100644 --- a/SOURCES/junit-jupiter-migrationsupport-5.4.0.pom +++ b/SOURCES/junit-jupiter-migrationsupport-5.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.jupiter junit-jupiter-migrationsupport - 5.4.0 + 5.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -45,29 +50,50 @@ 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.12 + 4.13 compile org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.6.0 compile diff --git a/SOURCES/junit-jupiter-params-5.4.0.pom b/SOURCES/junit-jupiter-params-5.6.0.pom similarity index 61% rename from SOURCES/junit-jupiter-params-5.4.0.pom rename to SOURCES/junit-jupiter-params-5.6.0.pom index 961fc51..2b14ceb 100644 --- a/SOURCES/junit-jupiter-params-5.4.0.pom +++ b/SOURCES/junit-jupiter-params-5.6.0.pom @@ -1,17 +1,21 @@ - + + + + + + 4.0.0 org.junit.jupiter junit-jupiter-params - 5.4.0 + 5.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.jupiter junit-jupiter-api - 5.4.0 + 5.6.0 compile diff --git a/SOURCES/junit-platform-commons-1.4.0.pom b/SOURCES/junit-platform-commons-1.6.0.pom similarity index 67% rename from SOURCES/junit-platform-commons-1.4.0.pom rename to SOURCES/junit-platform-commons-1.6.0.pom index c7d974e..8571b54 100644 --- a/SOURCES/junit-platform-commons-1.4.0.pom +++ b/SOURCES/junit-platform-commons-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-commons - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile diff --git a/SOURCES/junit-platform-console-1.4.0.pom b/SOURCES/junit-platform-console-1.6.0.pom similarity index 68% rename from SOURCES/junit-platform-console-1.4.0.pom rename to SOURCES/junit-platform-console-1.6.0.pom index 0790402..98a7c2b 100644 --- a/SOURCES/junit-platform-console-1.4.0.pom +++ b/SOURCES/junit-platform-console-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-console - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.platform junit-platform-reporting - 1.4.0 + 1.6.0 compile diff --git a/SOURCES/junit-platform-console-standalone-1.4.0.pom b/SOURCES/junit-platform-console-standalone-1.6.0.pom similarity index 74% rename from SOURCES/junit-platform-console-standalone-1.4.0.pom rename to SOURCES/junit-platform-console-standalone-1.6.0.pom index 0aa299f..16e238f 100644 --- a/SOURCES/junit-platform-console-standalone-1.4.0.pom +++ b/SOURCES/junit-platform-console-standalone-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-console-standalone - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0.pom similarity index 69% rename from SOURCES/junit-platform-engine-1.4.0.pom rename to SOURCES/junit-platform-engine-1.6.0.pom index 974cbe0..de2ceb5 100644 --- a/SOURCES/junit-platform-engine-1.4.0.pom +++ b/SOURCES/junit-platform-engine-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-engine - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.opentest4j opentest4j - 1.1.1 + 1.2.0 compile org.junit.platform junit-platform-commons - 1.4.0 + 1.6.0 compile diff --git a/SOURCES/junit-platform-launcher-1.4.0.pom b/SOURCES/junit-platform-launcher-1.6.0.pom similarity index 68% rename from SOURCES/junit-platform-launcher-1.4.0.pom rename to SOURCES/junit-platform-launcher-1.6.0.pom index ea3df9b..3744cc7 100644 --- a/SOURCES/junit-platform-launcher-1.4.0.pom +++ b/SOURCES/junit-platform-launcher-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-launcher - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.platform junit-platform-engine - 1.4.0 + 1.6.0 compile diff --git a/SOURCES/junit-platform-reporting-1.4.0.pom b/SOURCES/junit-platform-reporting-1.6.0.pom similarity index 68% rename from SOURCES/junit-platform-reporting-1.4.0.pom rename to SOURCES/junit-platform-reporting-1.6.0.pom index 3dc7c92..9cde326 100644 --- a/SOURCES/junit-platform-reporting-1.4.0.pom +++ b/SOURCES/junit-platform-reporting-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-reporting - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.platform junit-platform-launcher - 1.4.0 + 1.6.0 compile diff --git a/SOURCES/junit-platform-runner-1.4.0.pom b/SOURCES/junit-platform-runner-1.6.0.pom similarity index 66% rename from SOURCES/junit-platform-runner-1.4.0.pom rename to SOURCES/junit-platform-runner-1.6.0.pom index 3811b38..6ede803 100644 --- a/SOURCES/junit-platform-runner-1.4.0.pom +++ b/SOURCES/junit-platform-runner-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-runner - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -45,35 +50,56 @@ 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.12 + 4.13 compile org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.platform junit-platform-launcher - 1.4.0 + 1.6.0 compile org.junit.platform junit-platform-suite-api - 1.4.0 + 1.6.0 compile diff --git a/SOURCES/junit-platform-suite-api-1.4.0.pom b/SOURCES/junit-platform-suite-api-1.6.0.pom similarity index 67% rename from SOURCES/junit-platform-suite-api-1.4.0.pom rename to SOURCES/junit-platform-suite-api-1.6.0.pom index 8e5ce08..7ad4632 100644 --- a/SOURCES/junit-platform-suite-api-1.4.0.pom +++ b/SOURCES/junit-platform-suite-api-1.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.platform junit-platform-suite-api - 1.4.0 + 1.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -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.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile diff --git a/SOURCES/junit-vintage-engine-5.4.0.pom b/SOURCES/junit-vintage-engine-5.6.0.pom similarity index 65% rename from SOURCES/junit-vintage-engine-5.4.0.pom rename to SOURCES/junit-vintage-engine-5.6.0.pom index 8d7f870..1c4e11f 100644 --- a/SOURCES/junit-vintage-engine-5.4.0.pom +++ b/SOURCES/junit-vintage-engine-5.6.0.pom @@ -1,17 +1,22 @@ + + + + + 4.0.0 org.junit.vintage junit-vintage-engine - 5.4.0 + 5.6.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 + https://www.eclipse.org/legal/epl-v20.html @@ -45,30 +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 + + + + junit + junit + 4.13 + + + org.junit + junit-bom + 5.6.0 + pom + import + + + org.apiguardian apiguardian-api - 1.0.0 + 1.1.0 compile org.junit.platform junit-platform-engine - 1.4.0 + 1.6.0 compile junit junit - 4.12 - runtime + 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