forked from pool/junit5
This commit is contained in:
parent
b89ce4adaa
commit
69b82918ac
@ -19,6 +19,7 @@
|
|||||||
<module>junit-jupiter-params</module>
|
<module>junit-jupiter-params</module>
|
||||||
<module>junit-jupiter</module>
|
<module>junit-jupiter</module>
|
||||||
<module>junit-vintage-engine</module>
|
<module>junit-vintage-engine</module>
|
||||||
|
<module>junit-bom</module>
|
||||||
</modules>
|
</modules>
|
||||||
<build>
|
<build>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
|
129
junit-bom-5.5.2.pom
Normal file
129
junit-bom-5.5.2.pom
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.junit</groupId>
|
||||||
|
<artifactId>junit-bom</artifactId>
|
||||||
|
<version>5.5.2</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>JUnit 5 (Bill of Materials)</name>
|
||||||
|
<description>This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven.</description>
|
||||||
|
<url>https://junit.org/junit5/</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Eclipse Public License v2.0</name>
|
||||||
|
<url>https://www.eclipse.org/legal/epl-v20.html</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>bechte</id>
|
||||||
|
<name>Stefan Bechtold</name>
|
||||||
|
<email>stefan.bechtold@me.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jlink</id>
|
||||||
|
<name>Johannes Link</name>
|
||||||
|
<email>business@johanneslink.net</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>marcphilipp</id>
|
||||||
|
<name>Marc Philipp</name>
|
||||||
|
<email>mail@marcphilipp.de</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mmerdes</id>
|
||||||
|
<name>Matthias Merdes</name>
|
||||||
|
<email>Matthias.Merdes@heidelberg-mobil.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>sbrannen</id>
|
||||||
|
<name>Sam Brannen</name>
|
||||||
|
<email>sam@sambrannen.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>sormuras</id>
|
||||||
|
<name>Christian Stein</name>
|
||||||
|
<email>sormuras@gmail.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/junit-team/junit5.git</connection>
|
||||||
|
<developerConnection>scm:git:git://github.com/junit-team/junit5.git</developerConnection>
|
||||||
|
<url>https://github.com/junit-team/junit5</url>
|
||||||
|
</scm>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter</artifactId>
|
||||||
|
<version>5.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-api</artifactId>
|
||||||
|
<version>5.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
|
<version>5.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-migrationsupport</artifactId>
|
||||||
|
<version>5.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-params</artifactId>
|
||||||
|
<version>5.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-commons</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-console</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-engine</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-launcher</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-reporting</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-runner</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-suite-api</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-testkit</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.vintage</groupId>
|
||||||
|
<artifactId>junit-vintage-engine</artifactId>
|
||||||
|
<version>5.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Mar 3 14:03:48 UTC 2022 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Package also the bill-of-materials pom
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 8 08:55:55 UTC 2019 - Fridrich Strba <fstrba@suse.com>
|
Fri Nov 8 08:55:55 UTC 2019 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
18
junit5.spec
18
junit5.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package junit5
|
# spec file for package junit5
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -47,6 +47,8 @@ Source304: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter-p
|
|||||||
Source305: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter/%{jupiter_version}/junit-jupiter-%{jupiter_version}.pom
|
Source305: https://repo1.maven.org/maven2/org/junit/jupiter/junit-jupiter/%{jupiter_version}/junit-jupiter-%{jupiter_version}.pom
|
||||||
# Vintage POM
|
# Vintage POM
|
||||||
Source400: https://repo1.maven.org/maven2/org/junit/vintage/junit-vintage-engine/%{vintage_version}/junit-vintage-engine-%{vintage_version}.pom
|
Source400: https://repo1.maven.org/maven2/org/junit/vintage/junit-vintage-engine/%{vintage_version}/junit-vintage-engine-%{vintage_version}.pom
|
||||||
|
# Bom
|
||||||
|
Source500: https://repo1.maven.org/maven2/org/junit/junit-bom/%{version}/junit-bom-%{version}.pom
|
||||||
BuildRequires: asciidoc
|
BuildRequires: asciidoc
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: maven-local
|
BuildRequires: maven-local
|
||||||
@ -66,6 +68,14 @@ Requires: javapackages-tools
|
|||||||
%description
|
%description
|
||||||
JUnit is a popular regression testing framework for Java platform.
|
JUnit is a popular regression testing framework for Java platform.
|
||||||
|
|
||||||
|
%package bom
|
||||||
|
Summary: JUnit 5 (Bill of Materials)
|
||||||
|
Group: Development/Libraries/Java
|
||||||
|
|
||||||
|
%description bom
|
||||||
|
This Bill of Materials POM can be used to ease dependency management
|
||||||
|
when referencing multiple JUnit artifacts using Gradle or Maven.
|
||||||
|
|
||||||
%package javadoc
|
%package javadoc
|
||||||
Summary: Javadoc for %{name}
|
Summary: Javadoc for %{name}
|
||||||
Group: Documentation/HTML
|
Group: Documentation/HTML
|
||||||
@ -125,6 +135,9 @@ done
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%{mvn_package} :aggregator __noinstall
|
%{mvn_package} :aggregator __noinstall
|
||||||
|
%{mvn_package} :junit-bom bom
|
||||||
|
|
||||||
|
cp -p %{SOURCE500} junit-bom/pom.xml
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{mvn_build} -f -- -Dencoding=utf-8 -Dsource=8
|
%{mvn_build} -f -- -Dencoding=utf-8 -Dsource=8
|
||||||
@ -149,6 +162,9 @@ ln -s ../../javadoc/junit5 documentation/src/docs/api
|
|||||||
%endif
|
%endif
|
||||||
%license LICENSE.md LICENSE-notice.md
|
%license LICENSE.md LICENSE-notice.md
|
||||||
|
|
||||||
|
%files bom -f .mfiles-bom
|
||||||
|
%license LICENSE.md LICENSE-notice.md
|
||||||
|
|
||||||
%files javadoc -f .mfiles-javadoc
|
%files javadoc -f .mfiles-javadoc
|
||||||
%license LICENSE.md LICENSE-notice.md
|
%license LICENSE.md LICENSE-notice.md
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user