diff --git a/0000-ignore-jtidy-crashes.patch b/0000-ignore-jtidy-crashes.patch deleted file mode 100644 index 98419a5..0000000 --- a/0000-ignore-jtidy-crashes.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java -index 771b08b..05fef85 100644 ---- a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java -+++ b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java -@@ -291,6 +291,11 @@ public final class GeneratorUtils - { - // cannot happen as every JVM must support UTF-8, see also class javadoc for java.nio.charset.Charset - } -+ catch ( NullPointerException e ) -+ { -+ // if this happens, then the JavaDoc is messed up, so just ignore it -+ return ""; -+ } - - if ( StringUtils.isEmpty( commentCleaned ) ) - { diff --git a/0001-Disable-help-MOJO-generation.patch b/0001-Disable-help-MOJO-generation.patch new file mode 100644 index 0000000..220407c --- /dev/null +++ b/0001-Disable-help-MOJO-generation.patch @@ -0,0 +1,92 @@ +From 4d7b7bbd40fb82ef78f0a27135a8dc9075d132ea Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Mon, 27 Apr 2020 12:52:15 +0200 +Subject: [PATCH 1/3] Disable help MOJO generation + +--- + .../plugin/plugin/HelpGeneratorMojo.java | 20 +------------------ + .../generator/PluginDescriptorGenerator.java | 11 ---------- + 2 files changed, 1 insertion(+), 30 deletions(-) + +diff --git a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/HelpGeneratorMojo.java b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/HelpGeneratorMojo.java +index 767567b..1004867 100644 +--- a/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/HelpGeneratorMojo.java ++++ b/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/HelpGeneratorMojo.java +@@ -28,8 +28,6 @@ import org.apache.maven.plugins.annotations.Mojo; + import org.apache.maven.plugins.annotations.Parameter; + import org.apache.maven.plugins.annotations.ResolutionScope; + import org.apache.maven.tools.plugin.generator.Generator; +-import org.apache.maven.tools.plugin.generator.PluginHelpGenerator; +-import org.codehaus.plexus.velocity.VelocityComponent; + + /** + * Generates a HelpMojo class. +@@ -58,12 +56,6 @@ public class HelpGeneratorMojo + @Parameter + private String helpPackageName; + +- /** +- * Velocity component. +- */ +- @Component +- private VelocityComponent velocity; +- + /** + * {@inheritDoc} + */ +@@ -77,7 +69,7 @@ public class HelpGeneratorMojo + */ + protected Generator createGenerator() + { +- return new PluginHelpGenerator().setHelpPackageName( helpPackageName ).setVelocityComponent( this.velocity ); ++ return null; + } + + /** +@@ -86,16 +78,6 @@ public class HelpGeneratorMojo + public void execute() + throws MojoExecutionException + { +- // force value for this plugin +- skipErrorNoDescriptorsFound = true; +- +- super.execute(); +- +- if ( !project.getCompileSourceRoots().contains( outputDirectory.getAbsolutePath() ) && !skip ) +- { +- project.addCompileSourceRoot( outputDirectory.getAbsolutePath() ); +- } +- + } + + } +diff --git a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginDescriptorGenerator.java b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginDescriptorGenerator.java +index 1375cae..9e3d556 100644 +--- a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginDescriptorGenerator.java ++++ b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/PluginDescriptorGenerator.java +@@ -66,22 +66,11 @@ public class PluginDescriptorGenerator + public void execute( File destinationDirectory, PluginToolsRequest request ) + throws GeneratorException + { +- // eventually rewrite help mojo class to match actual package name +- PluginHelpGenerator.rewriteHelpMojo( request, log ); +- + try + { + // write complete plugin.xml descriptor + File f = new File( destinationDirectory, "plugin.xml" ); + writeDescriptor( f, request, false ); +- +- // write plugin-help.xml help-descriptor +- MavenProject mavenProject = request.getProject(); +- +- f = new File( mavenProject.getBuild().getOutputDirectory(), +- PluginHelpGenerator.getPluginHelpPath( mavenProject ) ); +- +- writeDescriptor( f, request, true ); + } + catch ( IOException e ) + { +-- +2.25.2 + diff --git a/0001-Port-to-plexus-utils-3.0.24.patch b/0001-Port-to-plexus-utils-3.0.24.patch deleted file mode 100644 index a553bef..0000000 --- a/0001-Port-to-plexus-utils-3.0.24.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 690138ca262b03d7e43336dd9bfee2ca0e1b03f9 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 23c3ed9..7543496 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.14.3 - diff --git a/0002-Remove-dependency-on-jtidy.patch b/0002-Remove-dependency-on-jtidy.patch new file mode 100644 index 0000000..a815d2a --- /dev/null +++ b/0002-Remove-dependency-on-jtidy.patch @@ -0,0 +1,92 @@ +From 39be64eff05c5db20b863ac971d2de5707ae8017 Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Mon, 27 Apr 2020 12:56:04 +0200 +Subject: [PATCH 2/3] Remove dependency on jtidy + +--- + .../plugin/generator/GeneratorUtils.java | 55 +------------------ + 1 file changed, 1 insertion(+), 54 deletions(-) + +diff --git a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java +index 771b08b..0346778 100644 +--- a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java ++++ b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java +@@ -51,7 +51,6 @@ import org.apache.maven.reporting.MavenReport; + import org.codehaus.plexus.component.repository.ComponentDependency; + import org.codehaus.plexus.util.StringUtils; + import org.codehaus.plexus.util.xml.XMLWriter; +-import org.w3c.tidy.Tidy; + + /** + * Convenience methods to play with Maven plugins. +@@ -254,58 +253,6 @@ public final class GeneratorUtils + return decoded.toString(); + } + +- /** +- * Fixes some javadoc comment to become a valid XHTML snippet. +- * +- * @param description Javadoc description with HTML tags, may be null. +- * @return The description with valid XHTML tags, never null. +- */ +- public static String makeHtmlValid( String description ) +- { +- if ( StringUtils.isEmpty( description ) ) +- { +- return ""; +- } +- +- String commentCleaned = decodeJavadocTags( description ); +- +- // Using jTidy to clean comment +- Tidy tidy = new Tidy(); +- tidy.setDocType( "loose" ); +- tidy.setXHTML( true ); +- tidy.setXmlOut( true ); +- tidy.setInputEncoding( "UTF-8" ); +- tidy.setOutputEncoding( "UTF-8" ); +- tidy.setMakeClean( true ); +- tidy.setNumEntities( true ); +- tidy.setQuoteNbsp( false ); +- tidy.setQuiet( true ); +- tidy.setShowWarnings( false ); +- try +- { +- ByteArrayOutputStream out = new ByteArrayOutputStream( commentCleaned.length() + 256 ); +- tidy.parse( new ByteArrayInputStream( commentCleaned.getBytes( "UTF-8" ) ), out ); +- commentCleaned = out.toString( "UTF-8" ); +- } +- catch ( UnsupportedEncodingException e ) +- { +- // cannot happen as every JVM must support UTF-8, see also class javadoc for java.nio.charset.Charset +- } +- +- if ( StringUtils.isEmpty( commentCleaned ) ) +- { +- return ""; +- } +- +- // strip the header/body stuff +- String ls = System.getProperty( "line.separator" ); +- int startPos = commentCleaned.indexOf( "" + ls ) + 6 + ls.length(); +- int endPos = commentCleaned.indexOf( ls + "" ); +- commentCleaned = commentCleaned.substring( startPos, endPos ); +- +- return commentCleaned; +- } +- + /** + * Converts a HTML fragment as extracted from a javadoc comment to a plain text string. This method tries to retain + * as much of the text formatting as possible by means of the following transformations: +@@ -337,7 +284,7 @@ public final class GeneratorUtils + + try + { +- parser.parse( new StringReader( makeHtmlValid( html ) ), htmlCallback, true ); ++ parser.parse( new StringReader( html ), htmlCallback, true ); + } + catch ( IOException e ) + { +-- +2.25.2 + diff --git a/0003-Disable-reporting.patch b/0003-Disable-reporting.patch new file mode 100644 index 0000000..48e9e0c --- /dev/null +++ b/0003-Disable-reporting.patch @@ -0,0 +1,90 @@ +From 8d455cd296ab9b3d762ddac71b3f51df234b66c1 Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Mon, 27 Apr 2020 12:57:13 +0200 +Subject: [PATCH 3/3] Disable reporting + +--- + .../plugin/generator/GeneratorUtils.java | 62 ------------------- + 1 file changed, 62 deletions(-) + +diff --git a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java +index 0346778..6ac66f8 100644 +--- a/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java ++++ b/maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/GeneratorUtils.java +@@ -47,7 +47,6 @@ import org.apache.maven.model.Dependency; + import org.apache.maven.plugin.descriptor.MojoDescriptor; + import org.apache.maven.plugin.descriptor.PluginDescriptor; + import org.apache.maven.project.MavenProject; +-import org.apache.maven.reporting.MavenReport; + import org.codehaus.plexus.component.repository.ComponentDependency; + import org.codehaus.plexus.util.StringUtils; + import org.codehaus.plexus.util.xml.XMLWriter; +@@ -592,65 +591,4 @@ public final class GeneratorUtils + return packageName; + } + +- /** +- * @param impl a Mojo implementation, not null +- * @param project a MavenProject instance, could be null +- * @return true is the Mojo implementation implements MavenReport, +- * false otherwise. +- * @throws IllegalArgumentException if any +- */ +- @SuppressWarnings( "unchecked" ) +- public static boolean isMavenReport( String impl, MavenProject project ) +- throws IllegalArgumentException +- { +- if ( impl == null ) +- { +- throw new IllegalArgumentException( "mojo implementation should be declared" ); +- } +- +- ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); +- if ( project != null ) +- { +- List classPathStrings; +- try +- { +- classPathStrings = project.getCompileClasspathElements(); +- if ( project.getExecutionProject() != null ) +- { +- classPathStrings.addAll( project.getExecutionProject().getCompileClasspathElements() ); +- } +- } +- catch ( DependencyResolutionRequiredException e ) +- { +- throw new IllegalArgumentException( e ); +- } +- +- List urls = new ArrayList<>( classPathStrings.size() ); +- for ( String classPathString : classPathStrings ) +- { +- try +- { +- urls.add( new File( classPathString ).toURL() ); +- } +- catch ( MalformedURLException e ) +- { +- throw new IllegalArgumentException( e ); +- } +- } +- +- classLoader = new URLClassLoader( urls.toArray( new URL[urls.size()] ), classLoader ); +- } +- +- try +- { +- Class clazz = Class.forName( impl, false, classLoader ); +- +- return MavenReport.class.isAssignableFrom( clazz ); +- } +- catch ( ClassNotFoundException e ) +- { +- return false; +- } +- } +- + } +-- +2.25.2 + diff --git a/maven-plugin-tools.spec b/maven-plugin-tools.spec index 10d7098..c8978f6 100644 --- a/maven-plugin-tools.spec +++ b/maven-plugin-tools.spec @@ -1,13 +1,12 @@ -# ant scripting is unused in fedora 33+ -%bcond_with ant +# Workaround for rhbz#1969370: __bootstrap macro is not defined in +# CentOS Stream, See https://bugzilla.redhat.com/1969370 +%global __bootstrap ~bootstrap -# bsh support is unused in fedora 33+ -%bcond_with beanshell +%bcond_without bootstrap Name: maven-plugin-tools Version: 3.6.0 -Release: 9%{?dist} -Epoch: 0 +Release: 10%{?dist} Summary: Maven Plugin Tools License: ASL 2.0 URL: http://maven.apache.org/plugin-tools/ @@ -15,19 +14,18 @@ BuildArch: noarch Source0: https://repo1.maven.org/maven2/org/apache/maven/plugin-tools/%{name}/%{version}/%{name}-%{version}-source-release.zip -Patch0: 0000-ignore-jtidy-crashes.patch -Patch1: 0001-Port-to-plexus-utils-3.0.24.patch +Patch1: 0001-Disable-help-MOJO-generation.patch +Patch2: 0002-Remove-dependency-on-jtidy.patch +Patch3: 0003-Disable-reporting.patch BuildRequires: maven-local +%if %{with bootstrap} +BuildRequires: javapackages-bootstrap +%else BuildRequires: mvn(com.thoughtworks.qdox:qdox) -BuildRequires: mvn(net.sf.jtidy:jtidy) -BuildRequires: mvn(org.apache.maven.doxia:doxia-sink-api) -BuildRequires: mvn(org.apache.maven.doxia:doxia-site-renderer) BuildRequires: mvn(org.apache.maven.plugins:maven-enforcer-plugin) BuildRequires: mvn(org.apache.maven.plugins:maven-plugin-plugin) BuildRequires: mvn(org.apache.maven.plugins:maven-source-plugin) -BuildRequires: mvn(org.apache.maven.reporting:maven-reporting-api) -BuildRequires: mvn(org.apache.maven.reporting:maven-reporting-impl) BuildRequires: mvn(org.apache.maven.surefire:maven-surefire-common) BuildRequires: mvn(org.apache.maven:maven-artifact) BuildRequires: mvn(org.apache.maven:maven-compat) @@ -36,38 +34,13 @@ 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:maven-repository-metadata) -BuildRequires: mvn(org.apache.velocity:velocity) BuildRequires: mvn(org.codehaus.modello:modello-maven-plugin) BuildRequires: mvn(org.codehaus.plexus:plexus-archiver) BuildRequires: mvn(org.codehaus.plexus:plexus-component-annotations) BuildRequires: mvn(org.codehaus.plexus:plexus-component-metadata) BuildRequires: mvn(org.codehaus.plexus:plexus-utils) -BuildRequires: mvn(org.codehaus.plexus:plexus-velocity) BuildRequires: mvn(org.ow2.asm:asm) BuildRequires: mvn(org.ow2.asm:asm-commons) - -%if %{with ant} -BuildRequires: mvn(org.apache.ant:ant) -BuildRequires: mvn(org.apache.ant:ant-launcher) -BuildRequires: mvn(org.codehaus.plexus:plexus-ant-factory) -%endif - -%if %{with beanshell} -BuildRequires: mvn(org.beanshell:bsh) -BuildRequires: mvn(org.codehaus.plexus:plexus-bsh-factory) -%endif - -# removed in fedora 33 with 3.6.0 -Obsoletes: maven-plugin-tools-javadoc < 0:3.6.0-1 - -%if %{without ant} -Obsoletes: maven-plugin-tools-ant < %{epoch}:%{version}-%{release} -Obsoletes: maven-script-ant < %{epoch}:%{version}-%{release} -%endif - -%if %{without beanshell} -Obsoletes: maven-plugin-tools-beanshell < %{epoch}:%{version}-%{release} -Obsoletes: maven-script-beanshell < %{epoch}:%{version}-%{release} %endif %description @@ -76,7 +49,6 @@ Plugins in a variety of languages. %package -n maven-plugin-annotations Summary: Maven Plugin Java 5 Annotations -Obsoletes: maven-plugin-annotations < 0:%{version}-%{release} %description -n maven-plugin-annotations This package contains Java 5 annotations to use in Mojos. @@ -96,35 +68,14 @@ Summary: Maven Plugin Tool for Annotations %description annotations This package provides Java 5 annotation tools for use with Apache Maven. -%if %{with ant} -%package ant -Summary: Maven Plugin Tool for Ant -Obsoletes: maven-shared-plugin-tools-ant < 0:%{version}-%{release} -Provides: maven-shared-plugin-tools-ant = 0:%{version}-%{release} - -%description ant -Descriptor extractor for plugins written in Ant. -%endif - %package api Summary: Maven Plugin Tools APIs -Obsoletes: maven-shared-plugin-tools-api < 0:%{version}-%{release} Provides: 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. -%if %{with beanshell} -%package beanshell -Summary: Maven Plugin Tool for Beanshell -Obsoletes: maven-shared-plugin-tools-beanshell < 0:%{version}-%{release} -Provides: maven-shared-plugin-tools-beanshell = 0:%{version}-%{release} - -%description beanshell -Descriptor extractor for plugins written in Beanshell. -%endif - %package generators Summary: Maven Plugin Tools Generators @@ -134,46 +85,11 @@ The Maven Plugin Tools Generators provides content generation %package java Summary: Maven Plugin Tool for Java -Obsoletes: maven-shared-plugin-tools-java < 0:%{version}-%{release} Provides: maven-shared-plugin-tools-java = 0:%{version}-%{release} %description java Descriptor extractor for plugins written in Java. -%package model -Summary: Maven Plugin Metadata Model -Obsoletes: maven-shared-plugin-tools-model < 0:%{version}-%{release} -Provides: 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 maven-script -Summary: Maven Script Mojo Support - -%description -n maven-script -Maven Script Mojo Support lets developer write Maven plugins/goals -with scripting languages instead of compiled Java. - -%if %{with ant} -%package -n maven-script-ant -Summary: Maven Ant Mojo Support - -%description -n maven-script-ant -This package provides %{summary}, which write Maven plugins with -Ant scripts. -%endif - -%if %{with beanshell} -%package -n maven-script-beanshell -Summary: Maven Beanshell Mojo Support - -%description -n maven-script-beanshell -This package provides %{summary}, which write Maven plugins with -Beanshell scripts. -%endif - # 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 @@ -187,9 +103,9 @@ API documentation for %{name}. %prep %setup -q - -%patch0 -p1 %patch1 -p1 +%patch2 -p1 +%patch3 -p1 %pom_remove_plugin :maven-enforcer-plugin @@ -197,15 +113,25 @@ API documentation for %{name}. UTF-8 UTF-8" -%if %{without ant} -%pom_disable_module maven-script-ant maven-script -%pom_disable_module maven-plugin-tools-ant maven-script -%endif +# Remove test dependencies because tests are skipped anyways. +%pom_xpath_remove -r "pom:dependency[pom:scope='test']" +%pom_remove_dep -r :easymock + +%pom_xpath_remove "pom:execution[pom:id='generated-helpmojo']" maven-plugin-plugin + +%pom_disable_module maven-script + +%pom_remove_dep -r :maven-reporting-impl +%pom_remove_dep -r :maven-reporting-api +%pom_remove_dep -r :plexus-velocity +%pom_remove_dep -r :velocity +%pom_remove_dep -r :jtidy +%pom_remove_dep -r :doxia-sink-api +%pom_remove_dep -r :doxia-site-renderer + +rm maven-plugin-tools-generators/src/main/java/org/apache/maven/tools/plugin/generator/Plugin{Help,Xdoc}Generator.java +rm maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java -%if %{without beanshell} -%pom_disable_module maven-script-beanshell maven-script -%pom_disable_module maven-plugin-tools-beanshell maven-script -%endif %build %mvn_build -s -f @@ -215,53 +141,34 @@ API documentation for %{name}. %files -f .mfiles-maven-plugin-tools -%dir %{_javadir}/%{name} %license LICENSE NOTICE %files -n maven-plugin-annotations -f .mfiles-maven-plugin-annotations +%license LICENSE NOTICE %files -n maven-plugin-plugin -f .mfiles-maven-plugin-plugin %files annotations -f .mfiles-maven-plugin-tools-annotations %license LICENSE NOTICE -%if %{with ant} -%files ant -f .mfiles-maven-plugin-tools-ant -%endif - %files api -f .mfiles-maven-plugin-tools-api %license LICENSE NOTICE -%if %{with beanshell} -%files beanshell -f .mfiles-maven-plugin-tools-beanshell -%endif - %files generators -f .mfiles-maven-plugin-tools-generators %files java -f .mfiles-maven-plugin-tools-java -%files model -f .mfiles-maven-plugin-tools-model -%license LICENSE NOTICE - -%files -n maven-script -f .mfiles-maven-script - -%if %{with ant} -%files -n maven-script-ant -f .mfiles-maven-script-ant -%license LICENSE NOTICE -%endif - -%if %{with beanshell} -%files -n maven-script-beanshell -f .mfiles-maven-script-beanshell -%license LICENSE NOTICE -%endif - %files javadocs -f .mfiles-javadoc %license LICENSE NOTICE %changelog -* Fri Apr 16 2021 Mohan Boddu - 0:3.6.0-9 -- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 +* Tue Jun 08 2021 Mikolaj Izdebski - 3.6.0-10 +- Bootstrap Maven for CentOS Stream 9 + +* Mon May 17 2021 Mikolaj Izdebski - 3.6.0-9 +- Bootstrap build +- Non-bootstrap build * Tue Jan 26 2021 Fedora Release Engineering - 0:3.6.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild @@ -278,6 +185,9 @@ API documentation for %{name}. * Thu May 14 2020 Fabio Valentini - 0:3.6.0-4 - Ignore jTidy crashes when generating maven plugin descriptors. +* Mon Apr 20 2020 Mikolaj Izdebski - 3.6.0-4 +- Disable beanshell modules + * Sun Mar 29 2020 Fabio Valentini - 0:3.6.0-3 - Disable unused beanshell support. @@ -291,12 +201,21 @@ API documentation for %{name}. * Wed Jan 29 2020 Fedora Release Engineering - 0:3.5.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild +* Tue Nov 05 2019 Mikolaj Izdebski - 3.6.0-3 +- Mass rebuild for javapackages-tools 201902 + * Thu Jul 25 2019 Fedora Release Engineering - 0:3.5.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild +* Fri May 24 2019 Mikolaj Izdebski - 3.6.0-2 +- Mass rebuild for javapackages-tools 201901 + * Fri Feb 01 2019 Fedora Release Engineering - 0:3.5.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild +* Wed Jan 02 2019 Marian Koncek - 0:3.6.0-1 +- Update to upstream version 3.6.0 + * Tue Jul 31 2018 Michael Simacek - 0:3.5.1-4 - Install license files for all subpackage combinations