Update to 2.5 + Guideline fixes
This commit is contained in:
parent
48958ddae5
commit
a449acca82
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
maven-resources-plugin-2.2.tar.gz
|
maven-resources-plugin-2.2.tar.gz
|
||||||
/maven-resources-plugin-2.4.3.tar.gz
|
/maven-resources-plugin-2.4.3.tar.gz
|
||||||
|
/maven-resources-plugin-2.5.tar.gz
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
Name: maven-resources-plugin
|
Name: maven-resources-plugin
|
||||||
Version: 2.4.3
|
Version: 2.5
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Maven Resources Plugin
|
Summary: Maven Resources Plugin
|
||||||
|
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: http://maven.apache.org/plugins/maven-resources-plugin
|
URL: http://maven.apache.org/plugins/maven-resources-plugin
|
||||||
#svn export http://svn.apache.org/repos/asf/maven/plugins/tags/maven-resources-plugin-2.4.3 maven-resources-plugin-2.4.3
|
#svn export http://svn.apache.org/repos/asf/maven/plugins/tags/maven-resources-plugin-2.5 maven-resources-plugin-2.5
|
||||||
#tar zcf maven-resources-plugin-2.4.3.tar.gz maven-resources-plugin-2.4.3/
|
#tar zcf maven-resources-plugin-2.5.tar.gz maven-resources-plugin-2.5/
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -30,6 +30,7 @@ BuildRequires: plexus-interpolation
|
|||||||
BuildRequires: plexus-digest
|
BuildRequires: plexus-digest
|
||||||
BuildRequires: maven-project
|
BuildRequires: maven-project
|
||||||
BuildRequires: maven-monitor
|
BuildRequires: maven-monitor
|
||||||
|
BuildRequires: maven-filtering
|
||||||
|
|
||||||
Requires: plexus-build-api
|
Requires: plexus-build-api
|
||||||
Requires: plexus-containers-container-default
|
Requires: plexus-containers-container-default
|
||||||
@ -42,8 +43,6 @@ Requires: maven-project
|
|||||||
Requires: maven-monitor
|
Requires: maven-monitor
|
||||||
Requires: jpackage-utils
|
Requires: jpackage-utils
|
||||||
Requires: java
|
Requires: java
|
||||||
Requires(post): jpackage-utils
|
|
||||||
Requires(postun): jpackage-utils
|
|
||||||
|
|
||||||
Provides: maven2-plugin-resources = %{version}-%{release}
|
Provides: maven2-plugin-resources = %{version}-%{release}
|
||||||
Obsoletes: maven2-plugin-resources <= 0:2.0.8
|
Obsoletes: maven2-plugin-resources <= 0:2.0.8
|
||||||
@ -67,29 +66,23 @@ API documentation for %{name}.
|
|||||||
%build
|
%build
|
||||||
mvn-rpmbuild \
|
mvn-rpmbuild \
|
||||||
-Dmaven.test.failure.ignore=true \
|
-Dmaven.test.failure.ignore=true \
|
||||||
install javadoc:javadoc
|
install javadoc:aggregate
|
||||||
|
|
||||||
%install
|
%install
|
||||||
# jars
|
# jars
|
||||||
install -d -m 0755 %{buildroot}%{_javadir}
|
install -d -m 0755 %{buildroot}%{_javadir}
|
||||||
install -m 644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
|
install -m 644 target/%{name}-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
|
||||||
|
|
||||||
%add_to_maven_depmap org.apache.maven.plugins maven-resources-plugin %{version} JPP maven-resources-plugin
|
|
||||||
|
|
||||||
# poms
|
# poms
|
||||||
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
install -d -m 755 %{buildroot}%{_mavenpomdir}
|
||||||
install -pm 644 pom.xml \
|
install -pm 644 pom.xml \
|
||||||
%{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
%{buildroot}%{_mavenpomdir}/JPP-%{name}.pom
|
||||||
|
%add_maven_depmap JPP-%{name}.pom %{name}.jar
|
||||||
|
|
||||||
# javadoc
|
# javadoc
|
||||||
install -d -m 0755 %{buildroot}%{_javadocdir}/%{name}
|
install -d -m 0755 %{buildroot}%{_javadocdir}/%{name}
|
||||||
cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}/
|
cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}/
|
||||||
|
|
||||||
%post
|
|
||||||
%update_maven_depmap
|
|
||||||
|
|
||||||
%postun
|
|
||||||
%update_maven_depmap
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_javadir}/*
|
%{_javadir}/*
|
||||||
@ -100,6 +93,11 @@ cp -pr target/site/api*/* %{buildroot}%{_javadocdir}/%{name}/
|
|||||||
%{_javadocdir}/%{name}
|
%{_javadocdir}/%{name}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 29 2011 Tomas Radej <tradej@redhat.com> - 2.5-1
|
||||||
|
- Update to 2.5
|
||||||
|
- Guideline fixes
|
||||||
|
- Added maven-filtering dep
|
||||||
|
|
||||||
* Thu Jun 23 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.4.3-4
|
* Thu Jun 23 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2.4.3-4
|
||||||
- Add several packages to BR/R as stated in pom.xml
|
- Add several packages to BR/R as stated in pom.xml
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user