RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/maven-surefire#f1fc29c52d0cf2a4a0966c4dd60271d4049efe84
This commit is contained in:
parent
00c5d99533
commit
81ae82b9e1
27
.gitignore
vendored
27
.gitignore
vendored
@ -0,0 +1,27 @@
|
|||||||
|
maven-surefire-1.5.3.tar.gz
|
||||||
|
maven-surefire-booter-1.5.3.tar.gz
|
||||||
|
maven-surefire-2.3-src.tar.gz
|
||||||
|
/maven-surefire-2.6-src.tar.xz
|
||||||
|
surefire-2.7.1-source-release.zip
|
||||||
|
/surefire-2.7.2-source-release.zip
|
||||||
|
/surefire-2.8-source-release.zip
|
||||||
|
/surefire-2.8.1-source-release.zip
|
||||||
|
/surefire-2.9-source-release.zip
|
||||||
|
surefire-2.10-source-release.zip
|
||||||
|
/surefire-2.12-source-release.zip
|
||||||
|
/surefire-2.12.1-source-release.zip
|
||||||
|
/surefire-2.13-source-release.zip
|
||||||
|
/cpl-v10.html
|
||||||
|
/surefire-2.14-source-release.zip
|
||||||
|
/surefire-2.14.1-source-release.zip
|
||||||
|
/surefire-2.15-source-release.zip
|
||||||
|
/surefire-2.16-source-release.zip
|
||||||
|
/surefire-2.17-source-release.zip
|
||||||
|
/surefire-2.18.1-source-release.zip
|
||||||
|
/surefire-2.19-source-release.zip
|
||||||
|
/surefire-2.19.1-source-release.zip
|
||||||
|
/surefire-2.20-source-release.zip
|
||||||
|
/surefire-2.20.1-source-release.zip
|
||||||
|
/surefire-2.21.0-source-release.zip
|
||||||
|
/surefire-2.22.0-source-release.zip
|
||||||
|
/maven-surefire-2.22.0.tar.gz
|
34
0001-Maven-3.patch
Normal file
34
0001-Maven-3.patch
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
From 3bb1ab3a99b7db611b5d265701e1ba293413b027 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Michael Simacek <msimacek@redhat.com>
|
||||||
|
Date: Thu, 5 May 2016 11:20:48 +0200
|
||||||
|
Subject: [PATCH 1/4] Maven 3
|
||||||
|
|
||||||
|
---
|
||||||
|
.../apache/maven/plugin/surefire/SurefireHelper.java | 11 +----------
|
||||||
|
1 file changed, 1 insertion(+), 10 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java
|
||||||
|
index dd29cb4..dc7915c 100644
|
||||||
|
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java
|
||||||
|
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireHelper.java
|
||||||
|
@@ -204,16 +204,7 @@ public final class SurefireHelper
|
||||||
|
private static String getFailureBehavior( MavenExecutionRequest request )
|
||||||
|
throws NoSuchMethodException, InvocationTargetException, IllegalAccessException
|
||||||
|
{
|
||||||
|
- try
|
||||||
|
- {
|
||||||
|
- return request.getFailureBehavior();
|
||||||
|
- }
|
||||||
|
- catch ( NoSuchMethodError e )
|
||||||
|
- {
|
||||||
|
- return (String) request.getClass()
|
||||||
|
- .getMethod( "getReactorFailureBehavior" )
|
||||||
|
- .invoke( request );
|
||||||
|
- }
|
||||||
|
+ return request.getReactorFailureBehavior();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean failIfNoTests( SurefireReportParameters reportParameters )
|
||||||
|
--
|
||||||
|
2.17.1
|
||||||
|
|
25
0002-Port-to-current-doxia.patch
Normal file
25
0002-Port-to-current-doxia.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
From 16e1a53ff612f4a9a777e09cdc45988e9abbe2e2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Michael Simacek <msimacek@redhat.com>
|
||||||
|
Date: Fri, 29 Jun 2018 12:44:37 +0200
|
||||||
|
Subject: [PATCH 2/4] Port to current doxia
|
||||||
|
|
||||||
|
---
|
||||||
|
.../maven/plugins/surefire/report/SurefireReportGenerator.java | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/SurefireReportGenerator.java b/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/SurefireReportGenerator.java
|
||||||
|
index f9b9480..f142c8d 100644
|
||||||
|
--- a/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/SurefireReportGenerator.java
|
||||||
|
+++ b/maven-surefire-report-plugin/src/main/java/org/apache/maven/plugins/surefire/report/SurefireReportGenerator.java
|
||||||
|
@@ -26,7 +26,7 @@ import java.util.Locale;
|
||||||
|
import java.util.Map;
|
||||||
|
import org.apache.maven.doxia.markup.HtmlMarkup;
|
||||||
|
import org.apache.maven.doxia.sink.Sink;
|
||||||
|
-import org.apache.maven.doxia.sink.SinkEventAttributeSet;
|
||||||
|
+import org.apache.maven.doxia.sink.impl.SinkEventAttributeSet;
|
||||||
|
import org.apache.maven.doxia.util.DoxiaUtils;
|
||||||
|
import org.apache.maven.plugin.surefire.log.api.ConsoleLogger;
|
||||||
|
import org.apache.maven.reporting.MavenReportException;
|
||||||
|
--
|
||||||
|
2.17.1
|
||||||
|
|
40
0003-Port-to-TestNG-6.11.patch
Normal file
40
0003-Port-to-TestNG-6.11.patch
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
From 73cbf7936466f7e32483b871813a82f214d44b30 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mikolaj Izdebski <mizdebsk@redhat.com>
|
||||||
|
Date: Mon, 10 Jul 2017 10:37:50 +0200
|
||||||
|
Subject: [PATCH 3/4] Port to TestNG 6.11
|
||||||
|
|
||||||
|
---
|
||||||
|
surefire-providers/surefire-testng/pom.xml | 3 +--
|
||||||
|
.../maven/surefire/testng/conf/AbstractDirectConfigurator.java | 2 +-
|
||||||
|
2 files changed, 2 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/surefire-providers/surefire-testng/pom.xml b/surefire-providers/surefire-testng/pom.xml
|
||||||
|
index 8aee308..e1b37ea 100644
|
||||||
|
--- a/surefire-providers/surefire-testng/pom.xml
|
||||||
|
+++ b/surefire-providers/surefire-testng/pom.xml
|
||||||
|
@@ -51,8 +51,7 @@
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.testng</groupId>
|
||||||
|
<artifactId>testng</artifactId>
|
||||||
|
- <version>5.10</version>
|
||||||
|
- <classifier>jdk15</classifier>
|
||||||
|
+ <version>6.11</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
diff --git a/surefire-providers/surefire-testng/src/main/java/org/apache/maven/surefire/testng/conf/AbstractDirectConfigurator.java b/surefire-providers/surefire-testng/src/main/java/org/apache/maven/surefire/testng/conf/AbstractDirectConfigurator.java
|
||||||
|
index c639ce9..3f05eed 100644
|
||||||
|
--- a/surefire-providers/surefire-testng/src/main/java/org/apache/maven/surefire/testng/conf/AbstractDirectConfigurator.java
|
||||||
|
+++ b/surefire-providers/surefire-testng/src/main/java/org/apache/maven/surefire/testng/conf/AbstractDirectConfigurator.java
|
||||||
|
@@ -63,7 +63,7 @@ public abstract class AbstractDirectConfigurator
|
||||||
|
testng.setUseDefaultListeners( false );
|
||||||
|
configureInstance( testng, options );
|
||||||
|
// TODO: we should have the Profile so that we can decide if this is needed or not
|
||||||
|
- testng.setListenerClasses( loadListenerClasses( listeners ) );
|
||||||
|
+ testng.setListenerClasses( ( List ) loadListenerClasses( listeners ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
--
|
||||||
|
2.17.1
|
||||||
|
|
95
0004-Port-to-current-maven-shared-utils.patch
Normal file
95
0004-Port-to-current-maven-shared-utils.patch
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
From 6f1e595890521c0c3448457f112c1598d8b9c7f9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Michael Simacek <msimacek@redhat.com>
|
||||||
|
Date: Fri, 16 Mar 2018 13:45:01 +0100
|
||||||
|
Subject: [PATCH 4/4] Port to current maven-shared-utils
|
||||||
|
|
||||||
|
---
|
||||||
|
.../surefire/report/StatelessXmlReporter.java | 16 ++++++++++------
|
||||||
|
pom.xml | 2 +-
|
||||||
|
2 files changed, 11 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/StatelessXmlReporter.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/StatelessXmlReporter.java
|
||||||
|
index dad9808..111b92b 100644
|
||||||
|
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/StatelessXmlReporter.java
|
||||||
|
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/report/StatelessXmlReporter.java
|
||||||
|
@@ -237,6 +237,10 @@ public class StatelessXmlReporter
|
||||||
|
}
|
||||||
|
ppw.endElement(); // TestSuite
|
||||||
|
}
|
||||||
|
+ catch (IOException e)
|
||||||
|
+ {
|
||||||
|
+ throw new RuntimeException(e);
|
||||||
|
+ }
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
closeQuietly( fw );
|
||||||
|
@@ -323,7 +327,7 @@ public class StatelessXmlReporter
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void startTestElement( XMLWriter ppw, WrappedReportEntry report, String reportNameSuffix,
|
||||||
|
- String timeAsString )
|
||||||
|
+ String timeAsString ) throws IOException
|
||||||
|
{
|
||||||
|
ppw.startElement( "testcase" );
|
||||||
|
ppw.addAttribute( "name", report.getReportName() );
|
||||||
|
@@ -346,7 +350,7 @@ public class StatelessXmlReporter
|
||||||
|
}
|
||||||
|
|
||||||
|
private void createTestSuiteElement( XMLWriter ppw, WrappedReportEntry report, TestSetStats testSetStats,
|
||||||
|
- String timeAsString )
|
||||||
|
+ String timeAsString ) throws IOException
|
||||||
|
{
|
||||||
|
ppw.startElement( "testsuite" );
|
||||||
|
|
||||||
|
@@ -373,7 +377,7 @@ public class StatelessXmlReporter
|
||||||
|
|
||||||
|
private static void getTestProblems( OutputStreamWriter outputStreamWriter, XMLWriter ppw,
|
||||||
|
WrappedReportEntry report, boolean trimStackTrace, OutputStream fw,
|
||||||
|
- String testErrorType, boolean createOutErrElementsInside )
|
||||||
|
+ String testErrorType, boolean createOutErrElementsInside ) throws IOException
|
||||||
|
{
|
||||||
|
ppw.startElement( testErrorType );
|
||||||
|
|
||||||
|
@@ -418,7 +422,7 @@ public class StatelessXmlReporter
|
||||||
|
|
||||||
|
// Create system-out and system-err elements
|
||||||
|
private static void createOutErrElements( OutputStreamWriter outputStreamWriter, XMLWriter ppw,
|
||||||
|
- WrappedReportEntry report, OutputStream fw )
|
||||||
|
+ WrappedReportEntry report, OutputStream fw ) throws IOException
|
||||||
|
{
|
||||||
|
EncodingOutputStream eos = new EncodingOutputStream( fw );
|
||||||
|
addOutputStreamElement( outputStreamWriter, eos, ppw, report.getStdout(), "system-out" );
|
||||||
|
@@ -428,7 +432,7 @@ public class StatelessXmlReporter
|
||||||
|
private static void addOutputStreamElement( OutputStreamWriter outputStreamWriter,
|
||||||
|
EncodingOutputStream eos, XMLWriter xmlWriter,
|
||||||
|
Utf8RecodingDeferredFileOutputStream utf8RecodingDeferredFileOutputStream,
|
||||||
|
- String name )
|
||||||
|
+ String name ) throws IOException
|
||||||
|
{
|
||||||
|
if ( utf8RecodingDeferredFileOutputStream != null && utf8RecodingDeferredFileOutputStream.getByteCount() > 0 )
|
||||||
|
{
|
||||||
|
@@ -458,7 +462,7 @@ public class StatelessXmlReporter
|
||||||
|
*
|
||||||
|
* @param xmlWriter The test suite to report to
|
||||||
|
*/
|
||||||
|
- private static void showProperties( XMLWriter xmlWriter, Map<String, String> systemProperties )
|
||||||
|
+ private static void showProperties( XMLWriter xmlWriter, Map<String, String> systemProperties ) throws IOException
|
||||||
|
{
|
||||||
|
xmlWriter.startElement( "properties" );
|
||||||
|
for ( final Entry<String, String> entry : systemProperties.entrySet() )
|
||||||
|
diff --git a/pom.xml b/pom.xml
|
||||||
|
index efc9342..6492689 100644
|
||||||
|
--- a/pom.xml
|
||||||
|
+++ b/pom.xml
|
||||||
|
@@ -91,7 +91,7 @@
|
||||||
|
<mavenPluginPluginVersion>3.5</mavenPluginPluginVersion>
|
||||||
|
<commonsLang3Version>3.5</commonsLang3Version>
|
||||||
|
<commonsIoVersion>2.5</commonsIoVersion>
|
||||||
|
- <mavenSharedUtilsVersion>0.9</mavenSharedUtilsVersion>
|
||||||
|
+ <mavenSharedUtilsVersion>3.2.1</mavenSharedUtilsVersion>
|
||||||
|
<powermockVersion>2.0.0-beta.5</powermockVersion>
|
||||||
|
<maven.surefire.scm.devConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-surefire.git</maven.surefire.scm.devConnection>
|
||||||
|
<maven.site.path>surefire-archives/surefire-LATEST</maven.site.path>
|
||||||
|
--
|
||||||
|
2.17.1
|
||||||
|
|
21
generate-tarball.sh
Executable file
21
generate-tarball.sh
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
name=maven-surefire
|
||||||
|
version="$(sed -n 's/Version:\s*//p' *.spec)"
|
||||||
|
|
||||||
|
# RETRIEVE
|
||||||
|
wget "http://repo2.maven.org/maven2/org/apache/maven/surefire/surefire/${version}/surefire-${version}-source-release.zip" -O "${name}-${version}.orig.zip"
|
||||||
|
|
||||||
|
rm -rf tarball-tmp
|
||||||
|
mkdir tarball-tmp
|
||||||
|
cd tarball-tmp
|
||||||
|
unzip "../${name}-${version}.orig.zip"
|
||||||
|
|
||||||
|
# CLEAN TARBALL
|
||||||
|
find -name '*.jar' -delete
|
||||||
|
find -name '*.class' -delete
|
||||||
|
|
||||||
|
tar cf "../${name}-${version}.tar.gz" *
|
||||||
|
cd ..
|
||||||
|
rm -r tarball-tmp "${name}-${version}.orig.zip"
|
532
maven-surefire.spec
Normal file
532
maven-surefire.spec
Normal file
@ -0,0 +1,532 @@
|
|||||||
|
%bcond_without junit5
|
||||||
|
|
||||||
|
Name: maven-surefire
|
||||||
|
Version: 2.22.0
|
||||||
|
Release: 9%{?dist}
|
||||||
|
Epoch: 0
|
||||||
|
Summary: Test framework project
|
||||||
|
License: ASL 2.0 and CPL
|
||||||
|
URL: http://maven.apache.org/surefire/
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
# ./generate-tarball.sh
|
||||||
|
Source0: %{name}-%{version}.tar.gz
|
||||||
|
# Remove bundled binaries which cannot be easily verified for licensing
|
||||||
|
Source1: generate-tarball.sh
|
||||||
|
Source2: http://junit.sourceforge.net/cpl-v10.html
|
||||||
|
|
||||||
|
Patch0: 0001-Maven-3.patch
|
||||||
|
Patch1: 0002-Port-to-current-doxia.patch
|
||||||
|
Patch2: 0003-Port-to-TestNG-6.11.patch
|
||||||
|
Patch3: 0004-Port-to-current-maven-shared-utils.patch
|
||||||
|
|
||||||
|
BuildRequires: maven-local
|
||||||
|
BuildRequires: mvn(com.google.code.findbugs:jsr305)
|
||||||
|
BuildRequires: mvn(commons-io:commons-io)
|
||||||
|
BuildRequires: mvn(junit:junit)
|
||||||
|
BuildRequires: mvn(org.apache.commons:commons-lang3)
|
||||||
|
BuildRequires: mvn(org.apache.maven.doxia:doxia-site-renderer)
|
||||||
|
BuildRequires: mvn(org.apache.maven:maven-artifact)
|
||||||
|
BuildRequires: mvn(org.apache.maven:maven-core)
|
||||||
|
BuildRequires: mvn(org.apache.maven:maven-model)
|
||||||
|
BuildRequires: mvn(org.apache.maven:maven-parent:pom:)
|
||||||
|
BuildRequires: mvn(org.apache.maven:maven-plugin-api)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-dependency-plugin)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-failsafe-plugin)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-invoker-plugin)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-plugin-plugin)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugins:maven-shade-plugin)
|
||||||
|
BuildRequires: mvn(org.apache.maven.plugin-tools:maven-plugin-annotations)
|
||||||
|
BuildRequires: mvn(org.apache.maven.reporting:maven-reporting-api)
|
||||||
|
BuildRequires: mvn(org.apache.maven.reporting:maven-reporting-impl)
|
||||||
|
BuildRequires: mvn(org.apache.maven.shared:maven-common-artifact-filters)
|
||||||
|
BuildRequires: mvn(org.apache.maven.shared:maven-shared-utils)
|
||||||
|
BuildRequires: mvn(org.apache.maven.shared:maven-verifier)
|
||||||
|
BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin)
|
||||||
|
BuildRequires: mvn(org.codehaus.mojo:javacc-maven-plugin)
|
||||||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-java)
|
||||||
|
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
||||||
|
BuildRequires: mvn(org.fusesource.jansi:jansi)
|
||||||
|
BuildRequires: mvn(org.testng:testng)
|
||||||
|
BuildRequires: mvn(org.testng:testng::jdk15:)
|
||||||
|
|
||||||
|
%if %{with junit5}
|
||||||
|
BuildRequires: mvn(org.junit.platform:junit-platform-launcher)
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# PpidChecker relies on /usr/bin/ps to check process uptime
|
||||||
|
Requires: procps-ng
|
||||||
|
|
||||||
|
%description
|
||||||
|
Surefire is a test framework project.
|
||||||
|
|
||||||
|
%package plugin
|
||||||
|
Summary: Surefire plugin for maven
|
||||||
|
|
||||||
|
%description plugin
|
||||||
|
Maven surefire plugin for running tests via the surefire framework.
|
||||||
|
|
||||||
|
%package report-plugin
|
||||||
|
Summary: Surefire reports plugin for maven
|
||||||
|
|
||||||
|
%description report-plugin
|
||||||
|
Plugin for generating reports from surefire test runs.
|
||||||
|
|
||||||
|
%package provider-junit
|
||||||
|
Summary: JUnit provider for Maven Surefire
|
||||||
|
|
||||||
|
%description provider-junit
|
||||||
|
JUnit provider for Maven Surefire.
|
||||||
|
|
||||||
|
%if %{with junit5}
|
||||||
|
%package provider-junit5
|
||||||
|
Summary: JUnit 5 provider for Maven Surefire
|
||||||
|
|
||||||
|
%description provider-junit5
|
||||||
|
JUnit 5 provider for Maven Surefire.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%package provider-testng
|
||||||
|
Summary: TestNG provider for Maven Surefire
|
||||||
|
|
||||||
|
%description provider-testng
|
||||||
|
TestNG provider for Maven Surefire.
|
||||||
|
|
||||||
|
%package report-parser
|
||||||
|
Summary: Parses report output files from surefire
|
||||||
|
|
||||||
|
%description report-parser
|
||||||
|
Plugin for parsing report output files from surefire.
|
||||||
|
|
||||||
|
%package -n maven-failsafe-plugin
|
||||||
|
Summary: Maven plugin for running integration tests
|
||||||
|
|
||||||
|
%description -n maven-failsafe-plugin
|
||||||
|
The Failsafe Plugin is designed to run integration tests while the
|
||||||
|
Surefire Plugins is designed to run unit. The name (failsafe) was
|
||||||
|
chosen both because it is a synonym of surefire and because it implies
|
||||||
|
that when it fails, it does so in a safe way.
|
||||||
|
|
||||||
|
If you use the Surefire Plugin for running tests, then when you have a
|
||||||
|
test failure, the build will stop at the integration-test phase and
|
||||||
|
your integration test environment will not have been torn down
|
||||||
|
correctly.
|
||||||
|
|
||||||
|
The Failsafe Plugin is used during the integration-test and verify
|
||||||
|
phases of the build lifecycle to execute the integration tests of an
|
||||||
|
application. The Failsafe Plugin will not fail the build during the
|
||||||
|
integration-test phase thus enabling the post-integration-test phase
|
||||||
|
to execute.
|
||||||
|
|
||||||
|
%package javadoc
|
||||||
|
Summary: Javadoc for %{name}
|
||||||
|
|
||||||
|
%description javadoc
|
||||||
|
Javadoc for %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n surefire-%{version}
|
||||||
|
cp -p %{SOURCE2} .
|
||||||
|
|
||||||
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
%patch3 -p1
|
||||||
|
|
||||||
|
# Disable strict doclint
|
||||||
|
sed -i /-Xdoclint:all/d pom.xml
|
||||||
|
|
||||||
|
%pom_disable_module surefire-shadefire
|
||||||
|
|
||||||
|
%if %{without junit5}
|
||||||
|
%pom_disable_module surefire-junit-platform surefire-providers
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%pom_remove_dep -r org.apache.maven.surefire:surefire-shadefire
|
||||||
|
|
||||||
|
# Help plugin is needed only to evaluate effective Maven settings.
|
||||||
|
# For building RPM package default settings will suffice.
|
||||||
|
%pom_remove_plugin :maven-help-plugin surefire-setup-integration-tests
|
||||||
|
|
||||||
|
# QA plugin useful only for upstream
|
||||||
|
%pom_remove_plugin -r :jacoco-maven-plugin
|
||||||
|
|
||||||
|
# Not in Fedora
|
||||||
|
%pom_remove_plugin -r :animal-sniffer-maven-plugin
|
||||||
|
# Complains
|
||||||
|
%pom_remove_plugin -r :apache-rat-plugin
|
||||||
|
%pom_remove_plugin -r :maven-enforcer-plugin
|
||||||
|
# We don't need site-source
|
||||||
|
%pom_remove_plugin :maven-assembly-plugin maven-surefire-plugin
|
||||||
|
%pom_remove_dep -r ::::site-source
|
||||||
|
|
||||||
|
%pom_xpath_set pom:mavenVersion 3.3.3
|
||||||
|
%pom_remove_dep :maven-project maven-surefire-report-plugin
|
||||||
|
%pom_remove_dep :maven-project maven-surefire-common
|
||||||
|
%pom_remove_dep :maven-plugin-descriptor maven-surefire-common
|
||||||
|
%pom_remove_dep :maven-toolchain maven-surefire-common
|
||||||
|
|
||||||
|
%pom_xpath_remove -r "pom:execution[pom:id='shared-logging-generated-sources']"
|
||||||
|
|
||||||
|
%pom_add_dep com.google.code.findbugs:jsr305 surefire-api
|
||||||
|
|
||||||
|
# This package needs maven compat for ArtifactResolver class
|
||||||
|
%pom_add_dep org.apache.maven:maven-compat maven-surefire-common
|
||||||
|
|
||||||
|
%build
|
||||||
|
%mvn_package ":*{surefire-plugin,report-plugin}*" @1
|
||||||
|
%mvn_package ":*junit-platform*" junit5
|
||||||
|
%mvn_package ":*{junit,testng,failsafe-plugin,report-parser}*" @1
|
||||||
|
%mvn_package ":*tests*" __noinstall
|
||||||
|
# tests turned off because they need jmock
|
||||||
|
# use xmvn-javadoc because maven-javadoc-plugin crashes JVM
|
||||||
|
%mvn_build -f -j -G org.fedoraproject.xmvn:xmvn-mojo:javadoc
|
||||||
|
|
||||||
|
%install
|
||||||
|
%mvn_install
|
||||||
|
|
||||||
|
|
||||||
|
%files -f .mfiles
|
||||||
|
%doc README.md
|
||||||
|
%license LICENSE NOTICE cpl-v10.html
|
||||||
|
|
||||||
|
%files plugin -f .mfiles-surefire-plugin
|
||||||
|
%files report-plugin -f .mfiles-report-plugin
|
||||||
|
%files report-parser -f .mfiles-report-parser
|
||||||
|
%files provider-junit -f .mfiles-junit
|
||||||
|
%files provider-testng -f .mfiles-testng
|
||||||
|
%files -n maven-failsafe-plugin -f .mfiles-failsafe-plugin
|
||||||
|
%if %{with junit5}
|
||||||
|
%files provider-junit5 -f .mfiles-junit5
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files javadoc -f .mfiles-javadoc
|
||||||
|
%license LICENSE NOTICE cpl-v10.html
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.22.0-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 0:2.22.0-8
|
||||||
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||||
|
|
||||||
|
* Wed Mar 25 2020 Severin Gehwolf <sgehwolf@redhat.com> - 0:2.22.0-7
|
||||||
|
- Add maven-compat dependency in maven-surefire-common for ArtifactResolver
|
||||||
|
class.
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.22.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.22.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.22.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 31 2018 Michael Simacek <msimacek@redhat.com> - 0:2.22.0-3
|
||||||
|
- Repack the tarball without binaries
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.22.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 29 2018 Michael Simacek <msimacek@redhat.com> - 0:2.22.0-1
|
||||||
|
- Update to upstream version 2.22.0
|
||||||
|
|
||||||
|
* Fri Mar 16 2018 Michael Simacek <msimacek@redhat.com> - 0:2.21.0-1
|
||||||
|
- Update to upstream version 2.21.0
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.20.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Sep 18 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.20.1-3
|
||||||
|
- Remove temporary build-requires
|
||||||
|
|
||||||
|
* Mon Sep 18 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.20.1-2
|
||||||
|
- Add missing requires on procps-ng
|
||||||
|
|
||||||
|
* Mon Sep 18 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.20.1-1
|
||||||
|
- Update to upstream version 2.20.1
|
||||||
|
|
||||||
|
* Tue Sep 12 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.20-1
|
||||||
|
- Update to upstream version 2.20
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.19.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 10 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.19.1-7
|
||||||
|
- Port to TestNG 6.11
|
||||||
|
- Resolves: rhbz#1469005
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.19.1-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.19.1-5
|
||||||
|
- Don't use Maven 2 toolchain
|
||||||
|
|
||||||
|
* Thu Jun 30 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.19.1-4
|
||||||
|
- Compile against Maven 3 APIs
|
||||||
|
|
||||||
|
* Thu May 05 2016 Michael Simacek <msimacek@redhat.com> - 0:2.19.1-3
|
||||||
|
- Fix FTBFS after doxia 1.7 update
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:2.19.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 4 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.19.1-1
|
||||||
|
- Update to upstream version 2.19.1
|
||||||
|
|
||||||
|
* Mon Oct 19 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.19-1
|
||||||
|
- Update to upstream version 2.19
|
||||||
|
|
||||||
|
* Mon Jul 13 2015 Michael Simacek <msimacek@redhat.com> - 0:2.18.1-2
|
||||||
|
- Fix FTBFS
|
||||||
|
|
||||||
|
* Thu Jun 25 2015 Michael Simacek <msimacek@redhat.com> - 0:2.18.1-1
|
||||||
|
- Update to upstream version 2.18.1
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.17-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Oct 14 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.17-6
|
||||||
|
- Remove legacy Obsoletes/Provides for maven2 plugin
|
||||||
|
|
||||||
|
* Thu Jun 19 2014 Michal Srb <msrb@redhat.com> - 0:2.17-5
|
||||||
|
- Fix maven-parent BR
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.17-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 26 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.17-3
|
||||||
|
- Rebuild to regenerate file lists
|
||||||
|
|
||||||
|
* Thu May 22 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.17-2
|
||||||
|
- Drop junit4 virtual provide
|
||||||
|
|
||||||
|
* Mon Mar 17 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.17-1
|
||||||
|
- Update to upstream version 2.17
|
||||||
|
|
||||||
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.16-3
|
||||||
|
- Use Requires: java-headless rebuild (#1067528)
|
||||||
|
|
||||||
|
* Fri Feb 21 2014 Michal Srb <msrb@redhat.com> - 0:2.16-2
|
||||||
|
- Remove dep on maven-compat
|
||||||
|
|
||||||
|
* Mon Aug 19 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.16-1
|
||||||
|
- Update to upstream version 2.16
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.15-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 18 2013 Michal Srb <msrb@redhat.com> - 0:2.15-1
|
||||||
|
- Update to upstream version 2.15
|
||||||
|
|
||||||
|
* Thu May 9 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.14.1-2
|
||||||
|
- Remove unneeded BR
|
||||||
|
- Resolves: rhbz#961467
|
||||||
|
|
||||||
|
* Mon Apr 15 2013 Michal Srb <msrb@redhat.com> - 0:2.14.1-1
|
||||||
|
- Update to upstream version 2.14.1
|
||||||
|
|
||||||
|
* Fri Apr 05 2013 Michal Srb <msrb@redhat.com> - 0:2.14-3
|
||||||
|
- Remove unnecessary dependency on mockito
|
||||||
|
|
||||||
|
* Fri Mar 15 2013 Michal Srb <msrb@redhat.com> - 0:2.14-2
|
||||||
|
- Remove unneeded dependencies
|
||||||
|
|
||||||
|
* Fri Mar 15 2013 Michal Srb <msrb@redhat.com> - 0:2.14-1
|
||||||
|
- Update to upstream version 2.14
|
||||||
|
|
||||||
|
* Thu Mar 7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.13-4
|
||||||
|
- Add missing BR: mockito
|
||||||
|
|
||||||
|
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0:2.13-3
|
||||||
|
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
||||||
|
- Replace maven BuildRequires with maven-local
|
||||||
|
|
||||||
|
* Tue Jan 29 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.13-2
|
||||||
|
- Get rid of custom depmap
|
||||||
|
|
||||||
|
* Wed Jan 23 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.13-1
|
||||||
|
- Update to upstream version 2.13
|
||||||
|
|
||||||
|
* Fri Dec 21 2012 Michal Srb <msrb@redhat.com> - 0:2.12.4-8
|
||||||
|
- Migrated from maven-doxia to doxia subpackages (Resolves: #889149)
|
||||||
|
|
||||||
|
* Fri Dec 14 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.4-7
|
||||||
|
- Fix Provides: maven-surefire-provider-junit4
|
||||||
|
|
||||||
|
* Fri Dec 14 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.4-6
|
||||||
|
- Merge junit3 and junit4 providers
|
||||||
|
- Disable dependency on shadefire
|
||||||
|
|
||||||
|
* Mon Dec 10 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.4-5
|
||||||
|
- Enable xmvn auto-requires
|
||||||
|
|
||||||
|
* Thu Nov 29 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.4-4
|
||||||
|
- Build with xmvn
|
||||||
|
|
||||||
|
* Thu Nov 15 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.4-3
|
||||||
|
- Add CPL license
|
||||||
|
|
||||||
|
* Mon Oct 22 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.4-2
|
||||||
|
- Add maven depmap for org.beanshell:bsh
|
||||||
|
|
||||||
|
* Fri Oct 5 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.4-1
|
||||||
|
- Update to upstream version 2.12.4
|
||||||
|
|
||||||
|
* Tue Sep 25 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.3-1
|
||||||
|
- Update to upstream version 2.12.3
|
||||||
|
|
||||||
|
* Mon Aug 13 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.2-1
|
||||||
|
- Update to upstream version 2.12.2
|
||||||
|
|
||||||
|
* Fri Aug 3 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.12.1-1
|
||||||
|
- Update to upstream version 2.12.1
|
||||||
|
- Install LICENSE and NOTICE files
|
||||||
|
- Remove RPM bug workaround
|
||||||
|
|
||||||
|
* Fri Jul 27 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.12-5
|
||||||
|
- Fix build problem and rebuild with target 1.5
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.12-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 06 2012 Jaromir Capik <jcapik@redhat.com> - 0:2.12-3
|
||||||
|
- Removing bootstrap condition for Patch1 inclusion (always needed in SRPM)
|
||||||
|
|
||||||
|
* Thu Mar 01 2012 Jaromir Capik <jcapik@redhat.com> - 0:2.12-2
|
||||||
|
- Update to 2.12
|
||||||
|
|
||||||
|
* Thu Mar 01 2012 Jaromir Capik <jcapik@redhat.com> - 0:2.12-1
|
||||||
|
- Bootstrap for 2.12
|
||||||
|
|
||||||
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.10-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 24 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.10-4
|
||||||
|
- Move poms and depmaps to respective sub-packages
|
||||||
|
- Add requires on junit provider to maven-plugin
|
||||||
|
|
||||||
|
* Wed Oct 5 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.10-3
|
||||||
|
- Fix junit4 depmap provider macro
|
||||||
|
- Remove unused patches
|
||||||
|
|
||||||
|
* Sun Oct 2 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.10-2
|
||||||
|
- BR maven-enforcer-plugin.
|
||||||
|
|
||||||
|
* Sun Oct 2 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.10-1
|
||||||
|
- Update to latest upstream - 2.10.
|
||||||
|
- Use new maven macro.
|
||||||
|
|
||||||
|
* Mon Jun 27 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.9-1
|
||||||
|
- Update to latest upstream (2.9)
|
||||||
|
- Fix up Requires for juni4 provider
|
||||||
|
|
||||||
|
* Tue May 24 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.8.1-4
|
||||||
|
- Fix up providers artifact and report plugin groupid
|
||||||
|
|
||||||
|
* Tue May 24 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.8.1-3
|
||||||
|
- Fix maven-surefire-plugin group in the depmap.
|
||||||
|
|
||||||
|
* Fri May 13 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.8.1-2
|
||||||
|
- Install testng-utils jar and pom
|
||||||
|
|
||||||
|
* Mon Apr 18 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.8.1-1
|
||||||
|
- Update to latest upstream version (2.8.1)
|
||||||
|
|
||||||
|
* Tue Mar 29 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.8-1
|
||||||
|
- Update to latest upstream version (2.8)
|
||||||
|
|
||||||
|
* Mon Mar 7 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.7.2-1
|
||||||
|
- Update to latest version (2.7.2)
|
||||||
|
- Add common-junit* jars to distribution
|
||||||
|
- Versionless javadocs
|
||||||
|
- Use maven 3 to build
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 3 2011 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.1-2
|
||||||
|
- Fix junit3 depmap.
|
||||||
|
|
||||||
|
* Wed Dec 29 2010 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.1-1
|
||||||
|
- Update to 2.7.1.
|
||||||
|
|
||||||
|
* Wed Dec 8 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.6-3
|
||||||
|
- Add proper Requires on junit/junit4/testng to providers
|
||||||
|
|
||||||
|
* Fri Oct 29 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.6-2
|
||||||
|
- Add main pom.xml
|
||||||
|
|
||||||
|
* Mon Aug 30 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:2.6-1
|
||||||
|
- Rename subpackages to not repeat "maven" twice
|
||||||
|
- Update to latest upstream version
|
||||||
|
- Add common jar to files
|
||||||
|
- Introduce maven-failsafe-plugin sub-package
|
||||||
|
- Cleanups
|
||||||
|
|
||||||
|
* Mon Aug 31 2009 Andrew Overholt <overholt@redhat.com> 0:2.3-7.7
|
||||||
|
- Bump release to rebuild
|
||||||
|
|
||||||
|
* Mon Aug 31 2009 Alexander Kurtakov <akurtako@redhat.com> 0:2.3-7.6
|
||||||
|
- Really remove maven2-plugin-surefire BR.
|
||||||
|
|
||||||
|
* Mon Aug 31 2009 Alexander Kurtakov <akurtako@redhat.com> 0:2.3-7.5
|
||||||
|
- Revert previous change.
|
||||||
|
|
||||||
|
* Mon Aug 31 2009 Alexander Kurtakov <akurtako@redhat.com> 0:2.3-7.4
|
||||||
|
- Disable not needed BRs.
|
||||||
|
|
||||||
|
* Mon Aug 31 2009 Alexander Kurtakov <akurtako@redhat.com> 0:2.3-7.3
|
||||||
|
- Install JPP.maven2.plugins-surefire-plugin.pom now that we have maven 2.0.8.
|
||||||
|
|
||||||
|
* Wed Aug 19 2009 Alexander Kurtakov <akurtako@redhat.com> 0:2.3-7.2
|
||||||
|
- Don't install JPP.maven2.plugins-surefire-plugin.pom to fix conflict with maven2 2.0.4.
|
||||||
|
|
||||||
|
* Tue Aug 18 2009 Alexander Kurtakov <akurtako@redhat.com> 0:2.3-7.1
|
||||||
|
- Update to 2.3 - sync with jpackage.
|
||||||
|
|
||||||
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5.3-4.8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5.3-3.8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Aug 13 2008 Deepak Bhole <dbhole@redhat.com> 1.5.3-2.8
|
||||||
|
- Build for ppc64
|
||||||
|
|
||||||
|
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.3-2.7
|
||||||
|
- drop repotag
|
||||||
|
|
||||||
|
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.3-2jpp.6
|
||||||
|
- fix license tag
|
||||||
|
|
||||||
|
* Thu Feb 28 2008 Deepak Bhole <dbhole@redhat.com> 1.5.3-2jpp.5
|
||||||
|
- Rebuild
|
||||||
|
|
||||||
|
* Fri Sep 21 2007 Deepak Bhole <dbhole@redhat.com> 1.5.3-2jpp.4
|
||||||
|
- Build with maven
|
||||||
|
- ExcludeArch ppc64
|
||||||
|
|
||||||
|
* Fri Aug 31 2007 Deepak Bhole <dbhole@redhat.com> 0:1.5.3-2jpp.3
|
||||||
|
- Build without maven (for initial ppc build)
|
||||||
|
|
||||||
|
* Tue Mar 20 2007 Deepak Bhole <dbhole@redhat.com> 0:1.5.3-2jpp.2
|
||||||
|
- Build with maven
|
||||||
|
|
||||||
|
* Mon Feb 26 2007 Tania Bento <tbento@redhat.com> 0:1.5.3-2jpp.1
|
||||||
|
- Fixed %%Release.
|
||||||
|
- Fixed %%BuildRoot.
|
||||||
|
- Removed %%Vendor.
|
||||||
|
- Removed %%Distribution.
|
||||||
|
- Removed period at the end of %%Summary.
|
||||||
|
- Removed %%post and %%postun sections for javadoc.
|
||||||
|
- Removed %%post and %%postun sections for booter-javadoc.
|
||||||
|
- Added gcj support option.
|
||||||
|
- Fixed instructions on how to generate source drop.
|
||||||
|
|
||||||
|
* Tue Oct 17 2006 Deepak Bhole <dbhole@redhat.com> 1.5.3-2jpp
|
||||||
|
- Update for maven2 9jpp
|
||||||
|
|
||||||
|
* Mon Jun 19 2006 Deepak Bhole <dbhole@redhat.com> - 0:1.5.3-1jpp
|
||||||
|
- Initial build
|
2
sources
Normal file
2
sources
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SHA512 (maven-surefire-2.22.0.tar.gz) = 339d76ef07280e72dea3217c545de1b36b02fdfa31258f3e9cb7ac9169c6826dbde5a2d39088482b3069054e957a27860547b09a6933c04ca7039fc9a0175d35
|
||||||
|
SHA512 (cpl-v10.html) = f7aa86fafb6a7831b1a5302099fbfe95361bcb5c49a2bc7aac0f5d53cea6c92fc3adbba897a54ab5b0cf32771cdc933fc5bb233461fbd48254a250d0d59109c9
|
Loading…
Reference in New Issue
Block a user