diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..11042db --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/maven-plugin-tools-3.5-source-release.zip diff --git a/.rh-maven35-maven-plugin-tools.metadata b/.rh-maven35-maven-plugin-tools.metadata new file mode 100644 index 0000000..edbfeb6 --- /dev/null +++ b/.rh-maven35-maven-plugin-tools.metadata @@ -0,0 +1 @@ +1c36a5e66cd4f0305050559e98c9a06d45bf5a6b SOURCES/maven-plugin-tools-3.5-source-release.zip diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-Avoid-duplicate-MOJO-parameters.patch b/SOURCES/0001-Avoid-duplicate-MOJO-parameters.patch new file mode 100644 index 0000000..4b068d4 --- /dev/null +++ b/SOURCES/0001-Avoid-duplicate-MOJO-parameters.patch @@ -0,0 +1,68 @@ +From c3ac93da0ffa924b76c01bd1119e9e5fdf538cb0 Mon Sep 17 00:00:00 2001 +From: Michael Simacek +Date: Mon, 16 Mar 2015 14:29:21 +0100 +Subject: [PATCH 1/3] Avoid duplicate MOJO parameters + +--- + .../JavaAnnotationsMojoDescriptorExtractor.java | 24 ++++++++++++++++++++-- + 1 file changed, 22 insertions(+), 2 deletions(-) + +diff --git a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java +index 231f623..a034dc2 100644 +--- a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java ++++ b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java +@@ -29,6 +29,7 @@ import java.util.Collection; + import java.util.Collections; + import java.util.HashMap; + import java.util.HashSet; ++import java.util.Iterator; + import java.util.List; + import java.util.Map; + import java.util.Set; +@@ -573,7 +574,7 @@ public class JavaAnnotationsMojoDescriptorExtractor + parameter.setSince( parameterAnnotationContent.getSince() ); + parameter.setRequired( parameterAnnotationContent.required() ); + +- mojoDescriptor.addParameter( parameter ); ++ addParameter( mojoDescriptor, parameter ); + } + + // Component annotations +@@ -614,7 +615,7 @@ public class JavaAnnotationsMojoDescriptorExtractor + //parameter.setRequired( ... ); + parameter.setEditable( false ); + +- mojoDescriptor.addParameter( parameter ); ++ addParameter( mojoDescriptor, parameter ); + } + + mojoDescriptor.setPluginDescriptor( pluginDescriptor ); +@@ -624,6 +625,25 @@ public class JavaAnnotationsMojoDescriptorExtractor + return mojoDescriptors; + } + ++ private void addParameter( ExtendedMojoDescriptor mojoDescriptor, ++ org.apache.maven.plugin.descriptor.Parameter parameter ) ++ throws DuplicateParameterException ++ { ++ if ( mojoDescriptor.getParameters() != null ) ++ { ++ for ( Iterator it = mojoDescriptor.getParameters().iterator(); it.hasNext(); ) ++ { ++ if ( it.next().equals( parameter ) ) ++ { ++ getLogger().warn( "Duplicate parameter " + parameter.getName() + " field in MOJO descriptor" ); ++ it.remove(); ++ } ++ } ++ } ++ ++ mojoDescriptor.addParameter( parameter ); ++ } ++ + protected ExecuteAnnotationContent findExecuteInParentHierarchy( MojoAnnotatedClass mojoAnnotatedClass, + Map mojoAnnotatedClasses ) + { +-- +2.7.4 + diff --git a/SOURCES/0002-Deal-with-nulls-from-getComment.patch b/SOURCES/0002-Deal-with-nulls-from-getComment.patch new file mode 100644 index 0000000..311b8da --- /dev/null +++ b/SOURCES/0002-Deal-with-nulls-from-getComment.patch @@ -0,0 +1,66 @@ +From 85fc3d643138044f461c3d89b9c6cb2ee58a6036 Mon Sep 17 00:00:00 2001 +From: Michael Simacek +Date: Mon, 16 Mar 2015 16:42:20 +0100 +Subject: [PATCH 2/3] Deal with nulls from getComment + +--- + .../annotations/JavaAnnotationsMojoDescriptorExtractor.java | 6 +++--- + .../extractor/javadoc/JavaJavadocMojoDescriptorExtractor.java | 4 ++-- + 2 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java +index a034dc2..0bf6e50 100644 +--- a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java ++++ b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/JavaAnnotationsMojoDescriptorExtractor.java +@@ -269,7 +269,7 @@ public class JavaAnnotationsMojoDescriptorExtractor + MojoAnnotationContent mojoAnnotationContent = entry.getValue().getMojo(); + if ( mojoAnnotationContent != null ) + { +- mojoAnnotationContent.setDescription( javaClass.getComment() ); ++ mojoAnnotationContent.setDescription( javaClass.getComment() != null ? javaClass.getComment() : "" ); + + DocletTag since = findInClassHierarchy( javaClass, "since" ); + if ( since != null ) +@@ -300,7 +300,7 @@ public class JavaAnnotationsMojoDescriptorExtractor + } + + ParameterAnnotationContent parameterAnnotationContent = parameter.getValue(); +- parameterAnnotationContent.setDescription( javaField.getComment() ); ++ parameterAnnotationContent.setDescription( javaClass.getComment() != null ? javaClass.getComment() : "" ); + + DocletTag deprecated = javaField.getTagByName( "deprecated" ); + if ( deprecated != null ) +@@ -326,7 +326,7 @@ public class JavaAnnotationsMojoDescriptorExtractor + } + + ComponentAnnotationContent componentAnnotationContent = component.getValue(); +- componentAnnotationContent.setDescription( javaField.getComment() ); ++ componentAnnotationContent.setDescription( javaClass.getComment() != null ? javaClass.getComment() : "" ); + + DocletTag deprecated = javaField.getTagByName( "deprecated" ); + if ( deprecated != null ) +diff --git a/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/javadoc/JavaJavadocMojoDescriptorExtractor.java b/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/javadoc/JavaJavadocMojoDescriptorExtractor.java +index 7ab0957..39a20c1 100644 +--- a/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/javadoc/JavaJavadocMojoDescriptorExtractor.java ++++ b/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/javadoc/JavaJavadocMojoDescriptorExtractor.java +@@ -115,7 +115,7 @@ public class JavaJavadocMojoDescriptorExtractor + ExtendedMojoDescriptor mojoDescriptor = new ExtendedMojoDescriptor(); + mojoDescriptor.setLanguage( "java" ); + mojoDescriptor.setImplementation( javaClass.getFullyQualifiedName() ); +- mojoDescriptor.setDescription( javaClass.getComment() ); ++ mojoDescriptor.setDescription( javaClass.getComment() != null ? javaClass.getComment() : "" ); + + // ---------------------------------------------------------------------- + // Mojo annotations in alphabetical order +@@ -392,7 +392,7 @@ public class JavaJavadocMojoDescriptorExtractor + + pd.setType( type.getFullyQualifiedName() ); + +- pd.setDescription( field.getComment() ); ++ pd.setDescription( javaClass.getComment() != null ? javaClass.getComment() : "" ); + + DocletTag deprecationTag = field.getTagByName( JavadocMojoAnnotation.DEPRECATED ); + +-- +2.7.4 + diff --git a/SOURCES/0003-Port-to-plexus-utils-3.0.24.patch b/SOURCES/0003-Port-to-plexus-utils-3.0.24.patch new file mode 100644 index 0000000..b2d4b1f --- /dev/null +++ b/SOURCES/0003-Port-to-plexus-utils-3.0.24.patch @@ -0,0 +1,33 @@ +From 433826f38814e496b78327010a6ffb08569fc297 Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Thu, 12 May 2016 09:36:10 +0200 +Subject: [PATCH 3/3] Port to plexus-utils 3.0.24 + +--- + .../maven/tools/plugin/generator/PluginHelpGenerator.java | 10 +++++++++- + 1 file changed, 9 insertions(+), 1 deletion(-) + +diff --git a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java +index 7d444a8..ff2f473 100644 +--- a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java ++++ b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java +@@ -302,7 +302,15 @@ public class PluginHelpGenerator + return; + } + +- Properties properties = PropertyUtils.loadProperties( tmpPropertiesFile ); ++ Properties properties; ++ try ++ { ++ properties = PropertyUtils.loadProperties( tmpPropertiesFile ); ++ } ++ catch ( IOException exc ) ++ { ++ properties = new Properties(); ++ } + + String helpPackageName = properties.getProperty( "helpPackageName" ); + +-- +2.7.4 + diff --git a/SPECS/maven-plugin-tools.spec b/SPECS/maven-plugin-tools.spec new file mode 100644 index 0000000..fcb365f --- /dev/null +++ b/SPECS/maven-plugin-tools.spec @@ -0,0 +1,443 @@ +%{?scl:%scl_package maven-plugin-tools} +%{!?scl:%global pkg_name %{name}} + +Name: %{?scl_prefix}maven-plugin-tools +Version: 3.5 +Release: 2.2%{?dist} +Epoch: 0 +Summary: Maven Plugin Tools +License: ASL 2.0 +URL: http://maven.apache.org/plugin-tools/ +BuildArch: noarch + +Source0: http://repo2.maven.org/maven2/org/apache/maven/plugin-tools/%{pkg_name}/%{version}/%{pkg_name}-%{version}-source-release.zip + +Patch0: 0001-Avoid-duplicate-MOJO-parameters.patch +Patch1: 0002-Deal-with-nulls-from-getComment.patch +Patch2: 0003-Port-to-plexus-utils-3.0.24.patch + +BuildRequires: %{?scl_prefix}maven-local +BuildRequires: %{?scl_prefix}mvn(com.sun:tools) +BuildRequires: %{?scl_prefix}mvn(com.thoughtworks.qdox:qdox) +BuildRequires: %{?scl_prefix}mvn(net.sf.jtidy:jtidy) +BuildRequires: %{?scl_prefix}mvn(org.apache.ant:ant) +BuildRequires: %{?scl_prefix}mvn(org.apache.ant:ant-launcher) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.doxia:doxia-sink-api) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.doxia:doxia-site-renderer) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-artifact) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-artifact:2.2.1) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-compat) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-core) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-model:2.2.1) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-parent:pom:) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-plugin-api) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-repository-metadata) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.plugins:maven-enforcer-plugin) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.plugins:maven-plugin-plugin) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.plugins:maven-source-plugin) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.reporting:maven-reporting-api) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.reporting:maven-reporting-impl) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.surefire:maven-surefire-common) +BuildRequires: %{?scl_prefix}mvn(org.apache.velocity:velocity) +BuildRequires: %{?scl_prefix}mvn(org.beanshell:bsh) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.modello:modello-maven-plugin) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.plexus:plexus-ant-factory) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.plexus:plexus-archiver) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.plexus:plexus-bsh-factory) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.plexus:plexus-component-annotations) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.plexus:plexus-component-metadata) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.plexus:plexus-utils) +BuildRequires: %{?scl_prefix}mvn(org.codehaus.plexus:plexus-velocity) +BuildRequires: %{?scl_prefix}mvn(org.easymock:easymock) +BuildRequires: %{?scl_prefix}mvn(org.ow2.asm:asm) +BuildRequires: %{?scl_prefix}mvn(org.ow2.asm:asm-commons) + +%description +The Maven Plugin Tools contains the necessary tools to be able to produce Maven +Plugins in a variety of languages. + +%package -n %{?scl_prefix}maven-plugin-annotations +Summary: Maven Plugin Java 5 Annotations + +%description -n %{?scl_prefix}maven-plugin-annotations +This package contains Java 5 annotations to use in Mojos. + +%package -n %{?scl_prefix}maven-plugin-plugin +Summary: Maven Plugin Plugin + +%description -n %{?scl_prefix}maven-plugin-plugin +The Plugin Plugin is used to create a Maven plugin descriptor for any Mojo's +found in the source tree, to include in the JAR. It is also used to generate +Xdoc files for the Mojos as well as for updating the plugin registry, the +artifact metadata and a generic help goal. + +%package annotations +Summary: Maven Plugin Tool for Annotations + +%description annotations +This package provides Java 5 annotation tools for use with Apache Maven. + +%package ant +Summary: Maven Plugin Tool for Ant +Provides: %{?scl_prefix}maven-shared-plugin-tools-ant = 0:%{version}-%{release} + +%description ant +Descriptor extractor for plugins written in Ant. + +%package api +Summary: Maven Plugin Tools APIs +Provides: %{?scl_prefix}maven-shared-plugin-tools-api = 0:%{version}-%{release} + +%description api +The Maven Plugin Tools API provides an API to extract information from +and generate documentation for Maven Plugins. + +%package beanshell +Summary: Maven Plugin Tool for Beanshell +Provides: %{?scl_prefix}maven-shared-plugin-tools-beanshell = 0:%{version}-%{release} + +%description beanshell +Descriptor extractor for plugins written in Beanshell. + +%package generators +Summary: Maven Plugin Tools Generators + +%description generators +The Maven Plugin Tools Generators provides content generation +(documentation, help) from plugin descriptor. + +%package java +Summary: Maven Plugin Tool for Java +Provides: %{?scl_prefix}maven-shared-plugin-tools-java = 0:%{version}-%{release} + +%description java +Descriptor extractor for plugins written in Java. + +# Note that this package contains code, not documentation. +# See comments about "javadocs" subpackage below. + +%package javadoc +Summary: Maven Plugin Tools Javadoc + +%description javadoc +The Maven Plugin Tools Javadoc provides several Javadoc taglets to be used when +generating Javadoc. + +Java API documentation for %{pkg_name} is contained in +%{pkg_name}-javadocs package. This package does not contain it. + +%package model +Summary: Maven Plugin Metadata Model +Provides: %{?scl_prefix}maven-shared-plugin-tools-model = 0:%{version}-%{release} + +%description model +The Maven Plugin Metadata Model provides an API to play with the Metadata +model. + +%package -n %{?scl_prefix}maven-script +Summary: Maven Script Mojo Support + +%description -n %{?scl_prefix}maven-script +Maven Script Mojo Support lets developer write Maven plugins/goals +with scripting languages instead of compiled Java. + +%package -n %{?scl_prefix}maven-script-ant +Summary: Maven Ant Mojo Support + +%description -n %{?scl_prefix}maven-script-ant +This package provides %{summary}, which write Maven plugins with +Ant scripts. + +%package -n %{?scl_prefix}maven-script-beanshell +Summary: Maven Beanshell Mojo Support + +%description -n %{?scl_prefix}maven-script-beanshell +This package provides %{summary}, which write Maven plugins with +Beanshell scripts. + +# This "javadocs" package violates packaging guidelines as of Sep 6 2012. The +# subpackage name "javadocs" instead of "javadoc" is intentional. There was a +# consensus that current naming scheme should be kept, even if it doesn't +# conform to the guidelines. mizdebsk, September 2012 + +%package javadocs +Summary: Javadoc for %{pkg_name} + +%description javadocs +API documentation for %{pkg_name}. + +%prep +%setup -n %{pkg_name}-%{version} -q +%patch0 -p1 +%patch1 -p1 +%patch2 -p1 + +%pom_remove_plugin :maven-enforcer-plugin + +# For com.sun:tools use scope "compile" instead of "system" +%pom_remove_dep com.sun:tools maven-plugin-tools-javadoc +%pom_add_dep com.sun:tools maven-plugin-tools-javadoc + +%pom_xpath_inject "pom:project/pom:properties" " + UTF-8 + UTF-8" + +# Remove test dependencies because tests are skipped anyways. +%pom_xpath_remove "pom:dependency[pom:scope='test']" + +# Use Maven 3.1.1 APIs +%pom_remove_dep :maven-project maven-plugin-plugin +%pom_remove_dep :maven-plugin-descriptor maven-plugin-plugin +%pom_remove_dep :maven-plugin-registry maven-plugin-plugin +%pom_remove_dep :maven-artifact-manager maven-plugin-plugin + +%pom_change_dep :maven-project :maven-core maven-plugin-tools-annotations +%pom_change_dep :maven-plugin-descriptor :maven-compat maven-plugin-tools-annotations + +%pom_remove_dep :maven-plugin-descriptor maven-script/maven-plugin-tools-ant +%pom_change_dep :maven-project :maven-core maven-script/maven-plugin-tools-ant + +%pom_remove_dep :maven-plugin-descriptor maven-plugin-tools-api +%pom_change_dep :maven-project :maven-core maven-plugin-tools-api + +%pom_remove_dep :maven-plugin-descriptor maven-script/maven-plugin-tools-beanshell + +%pom_remove_dep :maven-project maven-plugin-tools-generators +%pom_remove_dep :maven-plugin-descriptor maven-plugin-tools-generators + +%pom_change_dep :maven-project :maven-core maven-plugin-tools-java +%pom_remove_dep :maven-plugin-descriptor maven-plugin-tools-java + +%pom_change_dep :maven-plugin-descriptor :maven-plugin-api maven-script/maven-plugin-tools-model + +%pom_remove_dep :maven-project maven-script/maven-script-ant +%pom_remove_dep :maven-plugin-descriptor maven-script/maven-script-ant + +%pom_remove_dep :maven-project +%pom_remove_dep :maven-plugin-descriptor +%pom_add_dep org.apache.maven:maven-compat + +%build +%mvn_build -s -f + +%install +%mvn_install + +%files -f .mfiles-maven-plugin-tools +%dir %{_javadir}/%{pkg_name} +%doc LICENSE NOTICE + +%files -n %{?scl_prefix}maven-plugin-annotations -f .mfiles-maven-plugin-annotations + +%files -n %{?scl_prefix}maven-plugin-plugin -f .mfiles-maven-plugin-plugin + +%files annotations -f .mfiles-maven-plugin-tools-annotations + +%files ant -f .mfiles-maven-plugin-tools-ant + +%files api -f .mfiles-maven-plugin-tools-api + +%files beanshell -f .mfiles-maven-plugin-tools-beanshell + +%files generators -f .mfiles-maven-plugin-tools-generators + +%files java -f .mfiles-maven-plugin-tools-java + +%files javadoc -f .mfiles-maven-plugin-tools-javadoc + +%files model -f .mfiles-maven-plugin-tools-model + +%files -n %{?scl_prefix}maven-script -f .mfiles-maven-script + +%files -n %{?scl_prefix}maven-script-ant -f .mfiles-maven-script-ant + +%files -n %{?scl_prefix}maven-script-beanshell -f .mfiles-maven-script-beanshell + +%files javadocs -f .mfiles-javadoc +%doc LICENSE NOTICE + +%changelog +* Thu Jun 22 2017 Michael Simacek - 0:3.5-2.2 +- Mass rebuild 2017-06-22 + +* Wed Jun 21 2017 Java Maintainers - 0:3.5-2.1 +- Automated package import and SCL-ization + +* Fri Feb 10 2017 Fedora Release Engineering - 0:3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Nov 18 2016 Michael Simacek - 0:3.5-1 +- Update to upstream version 3.5 + +* Thu May 12 2016 Mikolaj Izdebski - 0:3.4-5 +- Port to plexus-utils 3.0.24 + +* Thu Feb 04 2016 Fedora Release Engineering - 0:3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 0:3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Mar 16 2015 Michael Simacek - 0:3.4-2 +- Prevent NPE when setting description element + +* Mon Mar 16 2015 Michael Simacek - 0:3.4-1 +- Update to upstream version 3.4 + +* Tue Oct 28 2014 Mikolaj Izdebski - 0:3.3-4 +- Port to QDox 2.0 + +* Tue Oct 14 2014 Mikolaj Izdebski - 0:3.3-3 +- Remove legacy Obsoletes/Provides for maven2 plugin + +* Mon Oct 13 2014 Mikolaj Izdebski - 0:3.3-2 +- Port to maven-reporting-impl 2.3 + +* Thu Jun 19 2014 Michal Srb - 0:3.3-1 +- Update to upstream version 3.3 + +* Sat Jun 07 2014 Fedora Release Engineering - 0:3.1-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue Mar 04 2014 Stanislav Ochotnicky - 0:3.1-19 +- Use Requires: java-headless rebuild (#1067528) + +* Mon Jan 27 2014 Mikolaj Izdebski - 0:3.1-18 +- Use Maven 3.x APIs + +* Fri Jan 10 2014 Mikolaj Izdebski - 0:3.1-17 +- Remove explicit requires +- Resolves: rhbz#1051527 + +* Fri Sep 20 2013 Mikolaj Izdebski - 0:3.1-16 +- Disable test dependencies + +* Fri Sep 20 2013 Mikolaj Izdebski - 0:3.1-15 +- Fix com.sun:tools dependency + +* Thu Aug 29 2013 Michal Srb - 0:3.1-14 +- Adapt to current guidelines (Resolves: #960526) + +* Sat Aug 03 2013 Fedora Release Engineering - 0:3.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue May 7 2013 Mikolaj Izdebski - 0:3.1-12 +- Disable resolution of test artifacts + +* Thu Apr 18 2013 Mikolaj Izdebski - 0:3.1-11 +- Remove test dependencies + +* Mon Mar 11 2013 Mikolaj Izdebski - 0:3.1-10 +- Add patch for MPLUGIN-242 +- Resolves: rhbz#920042 + +* Thu Feb 14 2013 Fedora Release Engineering - 0:3.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Feb 06 2013 Java SIG - 0:3.1-8 +- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild +- Replace maven BuildRequires with maven-local + +* Fri Dec 21 2012 Michal Srb - 0:3.1-7 +- Migrated from maven-doxia to doxia subpackage (Resolves: #889147) + +* Wed Nov 14 2012 Mikolaj Izdebski - 0:3.1-6 +- Skip running tests because they are failing + +* Tue Sep 11 2012 Mikolaj Izdebski - 0:3.1-5 +- Add missing requires + +* Tue Sep 11 2012 Mikolaj Izdebski - 0:3.1-4 +- Rebuild without bootstrap + +* Tue Sep 11 2012 Mikolaj Izdebski - 0:3.1-3 +- Add obsoletes for maven-plugin-annotations + +* Mon Sep 10 2012 Mikolaj Izdebski - 0:3.1-2 +- Bump release + +* Fri Sep 7 2012 Mikolaj Izdebski - 0:3.1-1 +- Update to upstream version 3.1 +- Bootstrap using prebuilt upstream binaries + +* Thu Sep 6 2012 Mikolaj Izdebski - 0:2.7-7 +- Remove rpm bug workaround + +* Tue Aug 28 2012 Mikolaj Izdebski - 0:2.7-6 +- Wrap descriptions at column 80 +- Install LICENSE and NOTICE files + +* Thu Jul 19 2012 Fedora Release Engineering - 0:2.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 0:2.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Nov 16 2011 Jaromir Capik - 0:2.7-3 +- Missing com.sun.javadoc / com.sun.tools.doclet forced in the POM + +* Tue Aug 16 2011 Jaromir Capik - 0:2.7-2 +- Removal of plexus-maven-plugin (not needed) +- Migration to maven3 +- Removal of unwanted file duplicates +- Minor spec file changes according to the latest guidelines + +* Sat Feb 12 2011 Alexander Kurtakov 0:2.7-1 +- Update to new upstream release. +- Adapt to current guidelines. + +* Tue Feb 08 2011 Fedora Release Engineering - 0:2.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Sep 30 2010 Stanislav Ochotnicky - 0:2.6-8 +- Remove jtidy depmap (not needed anymore) + +* Wed Sep 29 2010 Stanislav Ochotnicky - 0:2.6-7 +- Add patch for new jtidy +- Add jtidy depmap + +* Wed Sep 8 2010 Alexander Kurtakov 0:2.6-6 +- BR maven-site-plugin. +- Use javadoc:aggregate for multimodule projects. + +* Thu May 27 2010 Alexander Kurtakov 0:2.6-5 +- Add missing requires. +- Drop modello patches not needed anymore. + +* Wed May 19 2010 Alexander Kurtakov 0:2.6-4 +- Fix plugin-tools-java obsoletes. + +* Tue May 18 2010 Alexander Kurtakov 0:2.6-3 +- More BRs. + +* Tue May 18 2010 Alexander Kurtakov 0:2.6-2 +- Fix BRs. + +* Tue May 18 2010 Alexander Kurtakov 2.6-0 +- Update to 2.6. +- Separate modules as subpackages. + +* Mon Nov 23 2009 Alexander Kurtakov 0:2.1-6 +- BR maven-plugin-tools. + +* Mon Aug 31 2009 Alexander Kurtakov 0:2.1-5 +- Set minimum version for plexus-utils BR. +- BR java-devel. +- Fix javadoc subpackage description. + +* Mon Aug 31 2009 Alexander Kurtakov 0:2.1-4 +- Adapt for Fedora. + +* Wed May 20 2009 Fernando Nasser - 0:2.1-3 +- Fix license +- Fix URL + +* Mon Apr 27 2009 Yong Yang - 0:2.1-2 +- Add BRs for maven-doxia* +- Rebuild with maven2-2.0.8 built in non-bootstrap mode + +* Mon Mar 09 2009 Yong Yang - 0:2.1-1 +- Import from dbhole's maven2 2.0.8 packages + +* Mon Apr 07 2008 Deepak Bhole - 0:2.1-0jpp.1 +- Initial build