b62e4ec0b2
- Resolves: rhbz#991454
480 lines
17 KiB
RPMSpec
480 lines
17 KiB
RPMSpec
Name: maven
|
|
Version: 3.1.0
|
|
Release: 7%{?dist}
|
|
Summary: Java project management and project comprehension tool
|
|
|
|
Group: Development/Tools
|
|
License: ASL 2.0
|
|
URL: http://maven.apache.org/
|
|
Source0: http://archive.apache.org/dist/%{name}/%{name}-3/%{version}/source/apache-%{name}-%{version}-src.tar.gz
|
|
Source1: maven-bash-completion
|
|
Source2: mvn.1
|
|
|
|
# 2xx for created non-buildable sources
|
|
Source200: %{name}-script
|
|
|
|
# Patch1XX could be upstreamed probably
|
|
Patch100: 0005-Use-generics-in-modello-generated-code.patch
|
|
|
|
# Forwarded upstream (MNG-5502)
|
|
Patch200: 0001-Update-Aether-to-0.9.0.M3.patch
|
|
|
|
# Taken from upstream git (commit 11f46bd, MNG-5503)
|
|
Patch300: 0001-MNG-5503-Fix-for-the-issue-where-Maven-3.1.0-fails-t.patch
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: maven-local
|
|
|
|
BuildRequires: aether-api >= 1:0
|
|
BuildRequires: aether-connector-basic >= 1:0
|
|
BuildRequires: aether-impl >= 1:0
|
|
BuildRequires: aether-spi >= 1:0
|
|
BuildRequires: aether-util >= 1:0
|
|
BuildRequires: aether-transport-wagon >= 1:0
|
|
BuildRequires: aopalliance
|
|
BuildRequires: apache-commons-cli
|
|
BuildRequires: apache-commons-jxpath
|
|
BuildRequires: apache-resource-bundles
|
|
BuildRequires: atinject
|
|
BuildRequires: buildnumber-maven-plugin
|
|
BuildRequires: cglib
|
|
BuildRequires: easymock
|
|
BuildRequires: google-guice >= 3.0
|
|
BuildRequires: hamcrest
|
|
BuildRequires: jsr-305
|
|
BuildRequires: junit
|
|
BuildRequires: maven-assembly-plugin
|
|
BuildRequires: maven-compiler-plugin
|
|
BuildRequires: maven-install-plugin
|
|
BuildRequires: maven-jar-plugin
|
|
BuildRequires: maven-javadoc-plugin
|
|
BuildRequires: maven-parent
|
|
BuildRequires: maven-remote-resources-plugin
|
|
BuildRequires: maven-resources-plugin
|
|
BuildRequires: maven-site-plugin
|
|
BuildRequires: maven-surefire-plugin
|
|
BuildRequires: maven-surefire-provider-junit4
|
|
BuildRequires: maven-wagon
|
|
BuildRequires: objectweb-asm
|
|
BuildRequires: plexus-cipher
|
|
BuildRequires: plexus-classworlds
|
|
BuildRequires: plexus-containers-component-annotations
|
|
BuildRequires: plexus-containers-component-metadata >= 1.5.5
|
|
BuildRequires: plexus-containers-container-default
|
|
BuildRequires: plexus-interpolation
|
|
BuildRequires: plexus-sec-dispatcher
|
|
BuildRequires: plexus-utils >= 3.0.10
|
|
BuildRequires: sisu-inject >= 1:0
|
|
BuildRequires: sisu-plexus >= 1:0
|
|
BuildRequires: slf4j
|
|
BuildRequires: xmlunit
|
|
BuildRequires: mvn(ch.qos.logback:logback-classic)
|
|
|
|
# Theoretically Maven might be usable with just JRE, but typical Maven
|
|
# workflow requires full JDK, wso we require it here.
|
|
Requires: java-devel
|
|
|
|
# for noarch->arch change
|
|
Obsoletes: %{name} < 0:%{version}-%{release}
|
|
|
|
# maven2 bin package no longer exists.
|
|
Obsoletes: maven2 < 2.2.1-99
|
|
Provides: maven2 = %{version}-%{release}
|
|
|
|
%description
|
|
Maven is a software project management and comprehension tool. Based on the
|
|
concept of a project object model (POM), Maven can manage a project's build,
|
|
reporting and documentation from a central piece of information.
|
|
|
|
%package javadoc
|
|
Summary: API documentation for %{name}
|
|
Group: Documentation
|
|
|
|
%description javadoc
|
|
%{summary}.
|
|
|
|
%prep
|
|
%setup -q -n apache-%{name}-%{version}%{?ver_add}
|
|
%patch100 -p1
|
|
%patch200 -p1
|
|
%patch300 -p1
|
|
|
|
# not really used during build, but a precaution
|
|
rm maven-ant-tasks-*.jar
|
|
|
|
# fix line endings
|
|
sed -i 's:\r::' *.txt
|
|
|
|
# fix for animal-sniffer (we don't generate 1.5 signatures)
|
|
sed -i 's:check-java-1.5-compat:check-java-1.6-compat:' pom.xml
|
|
|
|
rm -f apache-maven/src/bin/*.bat
|
|
sed -i 's:\r::' apache-maven/src/conf/settings.xml
|
|
|
|
# Update shell scripts to use unversioned classworlds
|
|
sed -i -e s:'-classpath "${M2_HOME}"/boot/plexus-classworlds-\*.jar':'-classpath "${M2_HOME}"/boot/plexus-classworlds.jar':g \
|
|
apache-maven/src/bin/mvn*
|
|
|
|
# Disable animal-sniffer on RHEL
|
|
# Temporarily disabled for fedora to solve asm & asm4 clashing on classpath
|
|
#if [ %{?rhel} ]; then
|
|
%pom_remove_plugin :animal-sniffer-maven-plugin
|
|
#fi
|
|
|
|
# Test dependencies
|
|
%pom_add_dep aopalliance:aopalliance:any:test maven-model-builder
|
|
%pom_add_dep cglib:cglib:any:test maven-aether-provider
|
|
%pom_add_dep cglib:cglib:any:test maven-core
|
|
%pom_add_dep cglib:cglib:any:test maven-compat
|
|
%pom_add_dep cglib:cglib:any:test maven-model-builder
|
|
|
|
|
|
%build
|
|
# Put all JARs in standard location, but create symlinks in Maven lib
|
|
# directory so that Plexus Classworlds can find them.
|
|
%mvn_file ":{*}" %{name}/@1 %{_datadir}/%{name}/lib/@1
|
|
|
|
%mvn_build -- -Dproject.build.sourceEncoding=UTF-8
|
|
|
|
mkdir m2home
|
|
(cd m2home
|
|
tar --delay-directory-restore -xvf ../apache-maven/target/*tar.gz
|
|
chmod -R +rwX apache-%{name}-%{version}%{?ver_add}
|
|
chmod -x apache-%{name}-%{version}%{?ver_add}/conf/settings.xml
|
|
)
|
|
|
|
|
|
%install
|
|
%mvn_install
|
|
|
|
export M2_HOME=$(pwd)/m2home/apache-maven-%{version}%{?ver_add}
|
|
|
|
install -d -m 755 %{buildroot}%{_datadir}/%{name}/bin
|
|
install -d -m 755 %{buildroot}%{_datadir}/%{name}/conf
|
|
install -d -m 755 %{buildroot}%{_datadir}/%{name}/boot
|
|
install -d -m 755 %{buildroot}%{_datadir}/%{name}/lib/ext
|
|
install -d -m 755 %{buildroot}%{_bindir}
|
|
install -d -m 755 %{buildroot}%{_sysconfdir}/%{name}
|
|
install -d -m 755 %{buildroot}%{_datadir}/bash-completion/completions
|
|
install -d -m 755 %{buildroot}%{_mandir}/man1
|
|
|
|
install -p -m 755 %{SOURCE200} %{buildroot}%{_bindir}/mvn
|
|
install -p -m 644 %{SOURCE2} %{buildroot}%{_mandir}/man1
|
|
install -p -m 644 %{SOURCE1} %{buildroot}%{_datadir}/bash-completion/completions/%{name}
|
|
mv $M2_HOME/bin/m2.conf %{buildroot}%{_sysconfdir}
|
|
ln -sf %{_sysconfdir}/m2.conf %{buildroot}%{_datadir}/%{name}/bin/m2.conf
|
|
mv $M2_HOME/conf/settings.xml %{buildroot}%{_sysconfdir}/%{name}
|
|
ln -sf %{_sysconfdir}/%{name}/settings.xml %{buildroot}%{_datadir}/%{name}/conf/settings.xml
|
|
mv $M2_HOME/conf/logging %{buildroot}%{_sysconfdir}/%{name}
|
|
ln -sf %{_sysconfdir}/%{name}/logging %{buildroot}%{_datadir}/%{name}/conf
|
|
|
|
cp -a $M2_HOME/bin/* %{buildroot}%{_datadir}/%{name}/bin
|
|
|
|
ln -sf $(build-classpath plexus/classworlds) \
|
|
%{buildroot}%{_datadir}/%{name}/boot/plexus-classworlds.jar
|
|
|
|
(cd %{buildroot}%{_datadir}/%{name}/lib
|
|
build-jar-repository -s -p . \
|
|
aether/aether-api \
|
|
aether/aether-connector-basic \
|
|
aether/aether-impl \
|
|
aether/aether-spi \
|
|
aether/aether-util \
|
|
aether/aether-transport-wagon \
|
|
aopalliance \
|
|
objectweb-asm \
|
|
cdi-api \
|
|
commons-cli \
|
|
google-guice \
|
|
guava \
|
|
atinject \
|
|
jsr-305 \
|
|
org.eclipse.sisu.inject \
|
|
org.eclipse.sisu.plexus \
|
|
plexus/plexus-cipher \
|
|
plexus/containers-component-annotations \
|
|
plexus/interpolation \
|
|
plexus/plexus-sec-dispatcher \
|
|
plexus/utils \
|
|
slf4j/api \
|
|
slf4j/simple \
|
|
maven-wagon/file \
|
|
maven-wagon/http-shared \
|
|
maven-wagon/provider-api \
|
|
\
|
|
maven-wagon/http-lightweight \
|
|
cglib \
|
|
nekohtml \
|
|
)
|
|
|
|
|
|
|
|
%files -f .mfiles
|
|
%doc LICENSE.txt NOTICE.txt README.txt
|
|
%{_datadir}/%{name}
|
|
%{_bindir}/mvn
|
|
%dir %{_javadir}/%{name}
|
|
%dir %{_sysconfdir}/%{name}
|
|
%dir %{_sysconfdir}/%{name}/logging
|
|
%config(noreplace) %{_sysconfdir}/m2.conf
|
|
%config(noreplace) %{_sysconfdir}/%{name}/settings.xml
|
|
%config(noreplace) %{_sysconfdir}/%{name}/logging/simplelogger.properties
|
|
%{_datadir}/bash-completion/completions/%{name}
|
|
%{_mandir}/man1/mvn.1.gz
|
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
%doc LICENSE.txt NOTICE.txt
|
|
|
|
|
|
%changelog
|
|
* Fri Aug 23 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.0-7
|
|
- Add patch for MNG-5503
|
|
- Resolves: rhbz#991454
|
|
|
|
* Mon Aug 12 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.0-6
|
|
- Update Aether to 0.9.0.M3
|
|
|
|
* Mon Aug 12 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.0-5
|
|
- Prepare for update to Aether 0.9.0.M3
|
|
|
|
* Fri Aug 9 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.0-4
|
|
- Remove workaround for incompatible plexus-utils
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.0-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Tue Jul 23 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.0-2
|
|
- Install simplelogger.properties into %{_sysconfdir}
|
|
|
|
* Tue Jul 23 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.0-1
|
|
- Update to upstream version 3.1.0
|
|
|
|
* Fri Jul 19 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-8
|
|
- Use sonatype-aether symlinks
|
|
|
|
* Mon May 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-7
|
|
- Move bash-completion files to primary location
|
|
- Resolves: rhbz#918000
|
|
|
|
* Fri May 10 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-6
|
|
- Remove unneeded BR: async-http-client
|
|
- Add Requires on java-devel
|
|
|
|
* Thu May 2 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-5
|
|
- BR proper aether subpackages
|
|
- Resolves: rhbz#958160
|
|
|
|
* Fri Apr 26 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-4
|
|
- Add missing BuildRequires
|
|
|
|
* Tue Mar 12 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-3
|
|
- Make ext/ a subdirectory of lib/
|
|
|
|
* Tue Mar 12 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-2
|
|
- In maven-script don't override M2_HOME if already set
|
|
|
|
* Fri Mar 1 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.5-1
|
|
- Update to upstream version 3.0.5
|
|
- Move settings.xml to /etc
|
|
|
|
* Mon Feb 11 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-32
|
|
- Remove xerces-j2 from plexus.core realm
|
|
- Resolves: rhbz#784816
|
|
|
|
* Thu Feb 7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-31
|
|
- Migrate BR from sisu to sisu subpackages
|
|
|
|
* Wed Feb 6 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-30
|
|
- Remove unneeded R: maven-local
|
|
|
|
* Fri Jan 25 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-29
|
|
- Drop support for local mode
|
|
- Build with xmvn, rely on auto-requires
|
|
|
|
* Wed Jan 23 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-28
|
|
- Move mvn-local and mvn-rpmbuild out of %_bindir
|
|
|
|
* Tue Nov 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-27
|
|
- Move some parts to maven-local package
|
|
|
|
* Thu Nov 22 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-26
|
|
- Force source >= 1.5 and target >= source
|
|
|
|
* Mon Nov 19 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-25
|
|
- Fix license tag
|
|
|
|
* Thu Nov 15 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-24
|
|
- Install NOTICE file with javadoc package
|
|
|
|
* Tue Nov 13 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-23
|
|
- Temporarly require Plexus POMs as a workaround
|
|
|
|
* Mon Nov 12 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-22
|
|
- Drop dependency on maven2-common-poms
|
|
- Drop support for /etc/maven/fragments
|
|
|
|
* Thu Nov 08 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-21
|
|
- Add support for custom jar/pom/fragment directories
|
|
|
|
* Thu Nov 8 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-20
|
|
- Remove all slf4j providers except nop from maven realm
|
|
|
|
* Thu Nov 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-19
|
|
- Add aopalliance and cglib to maven-model-builder test dependencies
|
|
|
|
* Thu Nov 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-18
|
|
- Add objectweb-asm to classpath
|
|
|
|
* Thu Nov 1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-17
|
|
- Add aopalliance, cglib, slf4j to classpath
|
|
|
|
* Wed Oct 31 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-16
|
|
- Don't echo JAVA_HOME in maven-script
|
|
- Add bash completion for -Dproject.build.sourceEncoding
|
|
|
|
* Mon Oct 29 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-15
|
|
- Add a few bash completion goals
|
|
|
|
* Wed Oct 24 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-14
|
|
- Enable test skipping patch only for local mode (#869399)
|
|
|
|
* Fri Oct 19 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-13
|
|
- Make sure we look for requested pom file and not resolved
|
|
|
|
* Thu Oct 18 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-12
|
|
- Look into maven.repo.local first to handle corner-case packages (#865599)
|
|
- Finish handling of compatibility packages
|
|
- Disable animal-sniffer temporarily in Fedora as well
|
|
|
|
* Mon Aug 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-11
|
|
- Disable animal-sniffer on RHEL
|
|
|
|
* Wed Jul 25 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-10
|
|
- Fix exit code of mvn-rpmbuild outside of mock
|
|
- Fix bug in compatibility jar handling
|
|
|
|
* Mon Jul 23 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-9
|
|
- Run redundant dependency checks only in mock
|
|
|
|
* Tue Jul 17 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-8
|
|
- Add manual page
|
|
|
|
* Mon Jun 11 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-7
|
|
- Implement redundant dependency checks
|
|
|
|
* Thu May 24 2012 Krzysztof Daniel <kdaniel@redhat.com> 3.0.4-6
|
|
- Bug 824789 -Use the version if it is possible.
|
|
|
|
* Mon May 14 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-5
|
|
- Use Obsoletes instead of Conflicts
|
|
|
|
* Mon May 14 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-4
|
|
- Obsolete and provide maven2
|
|
|
|
* Thu Mar 29 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-3
|
|
- Make package noarch again to simplify bootstrapping
|
|
|
|
* Thu Feb 9 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-2
|
|
- Make javadoc noarch
|
|
- Make compilation source level 1.5
|
|
- Fix borked tarball unpacking (reason unknown)
|
|
|
|
* Tue Jan 31 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-1
|
|
- Update to latest upstream version
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.3-17
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Tue Dec 13 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-16
|
|
- Add maven2-common-poms to Requires
|
|
|
|
* Tue Oct 11 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-15
|
|
- Provide mvn script now instead of maven2
|
|
- Conflict with older versions of maven2
|
|
|
|
* Tue Aug 30 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-14
|
|
- Fix test scope skipping
|
|
|
|
* Mon Aug 22 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-13
|
|
- Remove unnecessary deps causing problems from lib/
|
|
- Add utf-8 source encoding patch
|
|
|
|
* Thu Jul 28 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-12
|
|
- Disable debug package creation
|
|
|
|
* Thu Jul 28 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-11
|
|
- Change to arch specific since we are using _libdir for _jnidir
|
|
|
|
* Tue Jul 26 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-10
|
|
- Add bash completion (#706856)
|
|
|
|
* Mon Jul 4 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-9
|
|
- Add resolving from jnidir and java-jni
|
|
|
|
* Thu Jun 23 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-8
|
|
- Add maven-parent to BR/R
|
|
|
|
* Wed Jun 22 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-7
|
|
- Process fragments in alphabetical order
|
|
|
|
* Tue Jun 21 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-6
|
|
- Fix handling of fallback default_poms
|
|
- Add empty-dep into maven package to not require maven2 version
|
|
|
|
* Fri Jun 10 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-5
|
|
- Process fragments directly instead of maven2-depmap.xml
|
|
- Expect fragments in /usr/share/maven-fragments
|
|
- Resolve poms also from /usr/share/maven-poms
|
|
|
|
* Mon Jun 6 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-4
|
|
- Add help to mvn-rpmbuild and mvn-local (rhbz#710448)
|
|
|
|
* Tue May 10 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-3
|
|
- Improve and clean up depmap handling for m2/m3 repos
|
|
|
|
* Mon Apr 18 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-2
|
|
- Enable MAVEN_OPTS override in scripts
|
|
|
|
* Fri Mar 4 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-1
|
|
- Update to 3.0.3
|
|
- Add ext subdirectory to lib
|
|
|
|
* Tue Mar 1 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-0.1.rc1
|
|
- Update to 3.0.3rc1
|
|
- Enable tests again
|
|
|
|
* Thu Feb 10 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.2-2
|
|
- Added mvn-rpmbuild script to be used in spec files
|
|
- mvn-local is now mixed mode (online with javadir priority)
|
|
- Changed mvn.jpp to mvn.local
|
|
|
|
* Fri Jan 28 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.2-1
|
|
- Update to latest version (3.0.2)
|
|
- Ignore test failures temporarily
|
|
|
|
* Wed Jan 12 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0-6
|
|
- Fix bug #669034
|
|
|
|
* Tue Jan 11 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0-5
|
|
- Fix bugs #667625 #667614 and #667636
|
|
- Install maven metadata so they are not downloaded when mvn is run
|
|
- Rename mvn3-local to mvn-local
|
|
- Add more comments to resolver patch
|
|
|
|
* Tue Dec 21 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0-4
|
|
- Add fedora local resolver
|
|
- Fix quoting of arguments to mvn scripts
|
|
- Add javadoc subpackage
|
|
- Make jars versionless and remove unneeded clean section
|
|
|
|
* Wed Dec 1 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0-3
|
|
- Remove maven-ant-tasks jar in prep
|
|
- Make fragment file as %%config
|
|
|
|
* Tue Nov 16 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0-2
|
|
- Added apache-commons-parent to BR after commons changes
|
|
|
|
* Tue Oct 12 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0-1
|
|
- Initial package with vanilla maven (no jpp mode yet)
|