Update to latest version (2.7.2)
- Add common-junit* jars to distribution - Versionless jars & javadocs - Use maven 3 to build
This commit is contained in:
parent
d8d2b69b82
commit
61183d21f8
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ maven-surefire-booter-1.5.3.tar.gz
|
|||||||
maven-surefire-2.3-src.tar.gz
|
maven-surefire-2.3-src.tar.gz
|
||||||
/maven-surefire-2.6-src.tar.xz
|
/maven-surefire-2.6-src.tar.xz
|
||||||
surefire-2.7.1-source-release.zip
|
surefire-2.7.1-source-release.zip
|
||||||
|
/surefire-2.7.2-source-release.zip
|
||||||
|
@ -1,29 +1,29 @@
|
|||||||
From 52e835422220d9d4d626cfdbbc7a9f629c51a5ff Mon Sep 17 00:00:00 2001
|
From d8dae0655ef37ca2217250af2c62639092e4e652 Mon Sep 17 00:00:00 2001
|
||||||
From: Stanislav Ochotnicky <sochotnicky@redhat.com>
|
From: Stanislav Ochotnicky <sochotnicky@redhat.com>
|
||||||
Date: Tue, 24 Aug 2010 13:21:20 +0200
|
Date: Mon, 7 Mar 2011 11:16:28 +0100
|
||||||
Subject: [PATCH 1/2] Remove mockito dependency
|
Subject: [PATCH 1/3] Remove mockito dependency
|
||||||
|
|
||||||
---
|
---
|
||||||
surefire-providers/surefire-junit47/pom.xml | 6 ------
|
surefire-providers/surefire-junit47/pom.xml | 6 ------
|
||||||
1 files changed, 0 insertions(+), 6 deletions(-)
|
1 files changed, 0 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
diff --git a/surefire-providers/surefire-junit47/pom.xml b/surefire-providers/surefire-junit47/pom.xml
|
diff --git a/surefire-providers/surefire-junit47/pom.xml b/surefire-providers/surefire-junit47/pom.xml
|
||||||
index 29dd961..2f18172 100644
|
index 1565bb2..3885ff8 100644
|
||||||
--- a/surefire-providers/surefire-junit47/pom.xml
|
--- a/surefire-providers/surefire-junit47/pom.xml
|
||||||
+++ b/surefire-providers/surefire-junit47/pom.xml
|
+++ b/surefire-providers/surefire-junit47/pom.xml
|
||||||
@@ -42,12 +42,6 @@
|
@@ -43,12 +43,6 @@
|
||||||
<groupId>org.codehaus.plexus</groupId>
|
|
||||||
<artifactId>plexus-utils</artifactId>
|
<artifactId>plexus-utils</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
- <dependency>
|
<dependency>
|
||||||
- <groupId>org.mockito</groupId>
|
- <groupId>org.mockito</groupId>
|
||||||
- <artifactId>mockito-all</artifactId>
|
- <artifactId>mockito-all</artifactId>
|
||||||
- <version>1.7</version>
|
- <version>1.7</version>
|
||||||
- <scope>test</scope>
|
- <scope>test</scope>
|
||||||
- </dependency>
|
- </dependency>
|
||||||
</dependencies>
|
- <dependency>
|
||||||
|
<groupId>org.apache.maven.surefire</groupId>
|
||||||
<build>
|
<artifactId>common-junit4</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
--
|
--
|
||||||
1.7.2.1
|
1.7.4
|
||||||
|
|
||||||
|
@ -1,11 +1,25 @@
|
|||||||
--- surefire-integration-tests/pom.xml.sav 2010-12-23 00:27:02.000000000 +0200
|
From ee2bebae60e63d0fc5de7481aead6bfe6b16dd94 Mon Sep 17 00:00:00 2001
|
||||||
+++ surefire-integration-tests/pom.xml 2010-12-29 23:41:18.701266133 +0200
|
From: Stanislav Ochotnicky <sochotnicky@redhat.com>
|
||||||
@@ -173,7 +173,7 @@
|
Date: Mon, 7 Mar 2011 11:17:20 +0100
|
||||||
|
Subject: [PATCH 2/3] Fix failsafe-plugin dependency version
|
||||||
|
|
||||||
|
---
|
||||||
|
surefire-integration-tests/pom.xml | 2 +-
|
||||||
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/surefire-integration-tests/pom.xml b/surefire-integration-tests/pom.xml
|
||||||
|
index 38da051..5bc709f 100644
|
||||||
|
--- a/surefire-integration-tests/pom.xml
|
||||||
|
+++ b/surefire-integration-tests/pom.xml
|
||||||
|
@@ -176,7 +176,7 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-failsafe-plugin</artifactId>
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||||||
- <version>2.7</version>
|
- <version>2.7.1</version>
|
||||||
+ <version>${project.version}</version>
|
+ <version>${project.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- Pass current surefire version to the main suite so that it -->
|
<!-- Pass current surefire version to the main suite so that it -->
|
||||||
<!-- can forward to all integration test projects. SUREFIRE-513 -->
|
<!-- can forward to all integration test projects. SUREFIRE-513 -->
|
||||||
|
--
|
||||||
|
1.7.4
|
||||||
|
|
||||||
|
29
0003-Remove-htmlunit-dependency.patch
Normal file
29
0003-Remove-htmlunit-dependency.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
From 7f208bb9e3fe1e81c59e17ef08b14abe56ebd351 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Stanislav Ochotnicky <sochotnicky@redhat.com>
|
||||||
|
Date: Mon, 7 Mar 2011 11:24:48 +0100
|
||||||
|
Subject: [PATCH 3/3] Remove htmlunit dependency
|
||||||
|
|
||||||
|
---
|
||||||
|
surefire-integration-tests/pom.xml | 6 ------
|
||||||
|
1 files changed, 0 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/surefire-integration-tests/pom.xml b/surefire-integration-tests/pom.xml
|
||||||
|
index 5bc709f..91cbdf2 100644
|
||||||
|
--- a/surefire-integration-tests/pom.xml
|
||||||
|
+++ b/surefire-integration-tests/pom.xml
|
||||||
|
@@ -90,12 +90,6 @@
|
||||||
|
<artifactId>plexus-utils</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
- <dependency>
|
||||||
|
- <groupId>net.sourceforge.htmlunit</groupId>
|
||||||
|
- <artifactId>htmlunit</artifactId>
|
||||||
|
- <version>2.8</version>
|
||||||
|
- <scope>test</scope>
|
||||||
|
- </dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
--
|
||||||
|
1.7.4
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
Name: maven-surefire
|
Name: maven-surefire
|
||||||
Version: 2.7.1
|
Version: 2.7.2
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Epoch: 0
|
Epoch: 0
|
||||||
Summary: Test framework project
|
Summary: Test framework project
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
@ -16,6 +16,9 @@ Patch1: 0001-Remove-mockito-dependency.patch
|
|||||||
# use current version of maven-failsafe-plugin present in maven-surefire
|
# use current version of maven-failsafe-plugin present in maven-surefire
|
||||||
Patch2: 0002-Fix-failsafe-plugin-dependency-version.patch
|
Patch2: 0002-Fix-failsafe-plugin-dependency-version.patch
|
||||||
|
|
||||||
|
# remove test dep on htmlunit
|
||||||
|
Patch3: 0003-Remove-htmlunit-dependency.patch
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: ant
|
BuildRequires: ant
|
||||||
BuildRequires: ant-nodeps
|
BuildRequires: ant-nodeps
|
||||||
@ -26,7 +29,7 @@ BuildRequires: plexus-utils
|
|||||||
BuildRequires: junit4
|
BuildRequires: junit4
|
||||||
BuildRequires: testng
|
BuildRequires: testng
|
||||||
|
|
||||||
BuildRequires: maven2
|
BuildRequires: maven
|
||||||
BuildRequires: maven-compiler-plugin
|
BuildRequires: maven-compiler-plugin
|
||||||
BuildRequires: maven-help-plugin
|
BuildRequires: maven-help-plugin
|
||||||
BuildRequires: maven-install-plugin
|
BuildRequires: maven-install-plugin
|
||||||
@ -148,20 +151,17 @@ Javadoc for %{name}.
|
|||||||
%setup -q -n surefire-%{version}
|
%setup -q -n surefire-%{version}
|
||||||
|
|
||||||
%patch1 -p1 -b .sav
|
%patch1 -p1 -b .sav
|
||||||
%patch2 -b .sav
|
%patch2 -p1 -b .sav
|
||||||
|
%patch3 -p1 -b .sav
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export MAVEN_REPO_LOCAL=$(pwd)/.m2/repository
|
|
||||||
mkdir -p $MAVEN_REPO_LOCAL
|
|
||||||
# tests turned off because they need jmock
|
# tests turned off because they need jmock
|
||||||
mvn-jpp -e \
|
mvn-rpmbuild -e \
|
||||||
-Dmaven.repo.local=$MAVEN_REPO_LOCAL \
|
-Dmaven.local.depmap.file=%{SOURCE1} \
|
||||||
-Dmaven2.jpp.depmap.file=%{SOURCE1} \
|
|
||||||
-Dmaven.test.skip=true \
|
-Dmaven.test.skip=true \
|
||||||
install javadoc:aggregate
|
install javadoc:aggregate
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
# jars
|
# jars
|
||||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}/maven-surefire
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadir}/maven-surefire
|
||||||
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
|
install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
|
||||||
@ -187,15 +187,24 @@ install -pm 644 surefire-booter/target/surefire-booter-*.jar $RPM_BUILD_ROOT%{_j
|
|||||||
%add_to_maven_depmap org.apache.maven.surefire surefire-booter %{version} JPP/maven-surefire booter
|
%add_to_maven_depmap org.apache.maven.surefire surefire-booter %{version} JPP/maven-surefire booter
|
||||||
install -pm 644 surefire-booter/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-booter.pom
|
install -pm 644 surefire-booter/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-booter.pom
|
||||||
|
|
||||||
install -pm 644 surefire-providers/surefire-junit/target/surefire-junit3-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/junit.jar
|
install -pm 644 surefire-providers/common-junit3/target/common-junit3-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/common-junit.jar
|
||||||
%add_to_maven_depmap org.apache.maven.surefire surefire-junit3 %{version} JPP/maven-surefire junit
|
%add_to_maven_depmap org.apache.maven.surefire common-junit3 %{version} JPP/maven-surefire common-junit
|
||||||
install -pm 644 surefire-providers/surefire-junit/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-junit.pom
|
install -pm 644 surefire-providers/common-junit3/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-common-junit.pom
|
||||||
|
|
||||||
install -pm 644 surefire-providers/surefire-junit4/target/surefire-junit4-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/junit4.jar
|
install -pm 644 surefire-providers/surefire-junit3/target/original-surefire-junit3-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/junit.jar
|
||||||
|
%add_to_maven_depmap org.apache.maven.surefire surefire-junit3 %{version} JPP/maven-surefire junit
|
||||||
|
%add_to_maven_depmap org.apache.maven.surefire surefire-junit %{version} JPP/maven-surefire junit
|
||||||
|
install -pm 644 surefire-providers/surefire-junit3/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-junit.pom
|
||||||
|
|
||||||
|
install -pm 644 surefire-providers/common-junit4/target/common-junit4-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/common-junit4.jar
|
||||||
|
%add_to_maven_depmap org.apache.maven.surefire common-junit4 %{version} JPP/maven-surefire common-junit4
|
||||||
|
install -pm 644 surefire-providers/common-junit4/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-common-junit4.pom
|
||||||
|
|
||||||
|
install -pm 644 surefire-providers/surefire-junit4/target/original-surefire-junit4-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/junit4.jar
|
||||||
%add_to_maven_depmap org.apache.maven.surefire surefire-junit4 %{version} JPP/maven-surefire junit4
|
%add_to_maven_depmap org.apache.maven.surefire surefire-junit4 %{version} JPP/maven-surefire junit4
|
||||||
install -pm 644 surefire-providers/surefire-junit4/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-junit4.pom
|
install -pm 644 surefire-providers/surefire-junit4/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-junit4.pom
|
||||||
|
|
||||||
install -pm 644 surefire-providers/surefire-junit47/target/surefire-junit47-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/junit47.jar
|
install -pm 644 surefire-providers/surefire-junit47/target/original-surefire-junit47-*.jar $RPM_BUILD_ROOT%{_javadir}/maven-surefire/junit47.jar
|
||||||
%add_to_maven_depmap org.apache.maven.surefire surefire-junit47 %{version} JPP/maven-surefire junit47
|
%add_to_maven_depmap org.apache.maven.surefire surefire-junit47 %{version} JPP/maven-surefire junit47
|
||||||
install -pm 644 surefire-providers/surefire-junit47/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-junit47.pom
|
install -pm 644 surefire-providers/surefire-junit47/pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-junit47.pom
|
||||||
|
|
||||||
@ -214,9 +223,8 @@ install -pm 644 pom.xml $RPM_BUILD_ROOT%{_mavenpomdir}/JPP.maven-surefire-main.p
|
|||||||
%add_to_maven_depmap org.apache.maven.surefire surefire %{version} JPP/maven-surefire main
|
%add_to_maven_depmap org.apache.maven.surefire surefire %{version} JPP/maven-surefire main
|
||||||
|
|
||||||
# javadoc
|
# javadoc
|
||||||
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
install -d -m 755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||||
cp -pr target/site/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
|
cp -pr target/site/apidocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
||||||
ln -sf %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
|
||||||
|
|
||||||
# Create compatibility links
|
# Create compatibility links
|
||||||
ln -s %{_javadir}/maven-surefire/api.jar \
|
ln -s %{_javadir}/maven-surefire/api.jar \
|
||||||
@ -229,6 +237,12 @@ ln -s %{_javadir}/maven-surefire/maven-plugin.jar \
|
|||||||
ln -s %{_javadir}/maven-surefire/report-maven-plugin.jar \
|
ln -s %{_javadir}/maven-surefire/report-maven-plugin.jar \
|
||||||
$RPM_BUILD_ROOT%{_datadir}/maven2/plugins/surefire-report-plugin.jar
|
$RPM_BUILD_ROOT%{_datadir}/maven2/plugins/surefire-report-plugin.jar
|
||||||
|
|
||||||
|
%pre javadoc
|
||||||
|
# workaround for rpm bug, can be removed in F-18
|
||||||
|
[ $1 -gt 1 ] && [ -L %{_javadocdir}/%{name} ] && \
|
||||||
|
rm -rf $(readlink -f %{_javadocdir}/%{name}) %{_javadocdir}/%{name} || :
|
||||||
|
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%update_maven_depmap
|
%update_maven_depmap
|
||||||
|
|
||||||
@ -238,46 +252,55 @@ ln -s %{_javadir}/maven-surefire/report-maven-plugin.jar \
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%dir %{_javadir}/maven-surefire
|
%dir %{_javadir}/maven-surefire
|
||||||
%{_javadir}/maven-surefire/api*
|
%{_javadir}/maven-surefire/api.jar
|
||||||
%{_javadir}/maven-surefire/booter*
|
%{_javadir}/maven-surefire/booter.jar
|
||||||
%{_javadir}/maven-surefire/surefire.jar
|
%{_javadir}/maven-surefire/surefire.jar
|
||||||
%{_javadir}/maven-surefire/common*
|
%{_javadir}/maven-surefire/common.jar
|
||||||
%{_mavenpomdir}/*
|
%{_mavenpomdir}/*
|
||||||
%{_mavendepmapfragdir}/*
|
%{_mavendepmapfragdir}/*
|
||||||
|
|
||||||
%files plugin
|
%files plugin
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_javadir}/maven-surefire/maven-plugin*
|
%{_javadir}/maven-surefire/maven-plugin.jar
|
||||||
%dir %{_datadir}/maven2/plugins
|
%dir %{_datadir}/maven2/plugins
|
||||||
%{_datadir}/maven2/plugins/surefire-plugin.jar
|
%{_datadir}/maven2/plugins/surefire-plugin.jar
|
||||||
|
|
||||||
%files report-plugin
|
%files report-plugin
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_javadir}/maven-surefire/report-maven-plugin*
|
%{_javadir}/maven-surefire/report-maven-plugin.jar
|
||||||
%dir %{_datadir}/maven2/plugins
|
%dir %{_datadir}/maven2/plugins
|
||||||
%{_datadir}/maven2/plugins/surefire-report-plugin.jar
|
%{_datadir}/maven2/plugins/surefire-report-plugin.jar
|
||||||
|
|
||||||
%files provider-junit
|
%files provider-junit
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_javadir}/maven-surefire/junit[^4]*
|
%{_javadir}/maven-surefire/junit.jar
|
||||||
|
%{_javadir}/maven-surefire/common-junit.jar
|
||||||
|
|
||||||
%files provider-junit4
|
%files provider-junit4
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_javadir}/maven-surefire/junit4*
|
%{_javadir}/maven-surefire/junit4.jar
|
||||||
|
%{_javadir}/maven-surefire/junit47.jar
|
||||||
|
%{_javadir}/maven-surefire/common-junit4.jar
|
||||||
|
|
||||||
%files provider-testng
|
%files provider-testng
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_javadir}/maven-surefire/testng*
|
%{_javadir}/maven-surefire/testng.jar
|
||||||
|
|
||||||
%files -n maven-failsafe-plugin
|
%files -n maven-failsafe-plugin
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_javadir}/maven-failsafe-plugin*jar
|
%{_javadir}/maven-failsafe-plugin.jar
|
||||||
|
|
||||||
%files javadoc
|
%files javadoc
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc %{_javadocdir}/*
|
%doc %{_javadocdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* 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
|
* 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
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user