On Friday, 10 June 2016 at 21:33, Arnaud Héritier wrote:
> I need to investigate but I have a bug with findbugs and 3.4.0-SNAPSHOT
>
> [ERROR] Failed to execute goal
> org.codehaus.mojo:findbugs-maven-plugin:3.0.1:findbugs (findbugs) on project
> support-analytics: Unable to parse configuration of mojo
> org.codehaus.mojo:findbugs-maven-plugin:3.0.1:findbugs for parameter
> pluginArtifacts: Cannot assign configuration entry 'pluginArtifacts' with
> value '${plugin.artifacts}' of type
> java.util.Collections.UnmodifiableRandomAccessList to property of type
> java.util.ArrayList -> [Help 1]
>
> Is there someone who can verify that he can reproduce the issue with this pom
> please ?
https://github.com/gleclaire/findbugs-maven-plugin/pull/35 ?
> Cheers
>
>
> On Fri, Jun 10, 2016 at 9:26 AM, Arnaud Héritier <[email protected]
> (mailto:[email protected])> wrote:
> > \o/
> >
> > On Fri, Jun 10, 2016 at 8:39 AM, Hervé BOUTEMY <[email protected]
> > (mailto:[email protected])> wrote:
> > > here it is:
> > > I merged Christian fix
> > > and I managed to make ITs run as embedded (ASF Jenkins should confirm what
> > > works on my machine)
> > >
> > > if everything goes well, I'll merge to master tonight
> > >
> > > Regards,
> > >
> > > Hervé
> > >
> > > Le jeudi 9 juin 2016 09:20:38 Christian Schulte a écrit :
> > > > Am 06/09/16 um 09:04 schrieb Petar Tahchiev:
> > > > > Hello,
> > > > >
> > > > > I checked on Windows with Herve's [1]. Unfortunately I am unable to
> > > > > build
> > > > >
> > > > > my project with 3.4.0-SNAPSHOT. I have this dependency:
> > > > > <dependency>
> > > > >
> > > > > <groupId>org.drools</groupId>
> > > > > <artifactId>drools-bom</artifactId>
> > > > > <type>pom</type>
> > > > > <version>${drools.version}</version>
> > > > > <scope>import</scope>
> > > > >
> > > > > </dependency>
> > > > >
> > > > > where drools version is defined to be
> > > > > <drools.version>6.4.0.Final</drools.version>. And when I build it I
> > > > > get:
> > > > >
> > > > > [ERROR] Non-resolvable import POM: Failure to find
> > > > > org.kie:kie-bom:pom:${project.version} in
> > > > > http://repo1.maven.org/maven2/
> > > > > was cached in the local repository, resolution will not be reattempted
> > > > > until the update interval of official-m2-repo has elapsed or updates
> > > > > are
> > > > > forced @ org.drools:drools-bom:[unknown-version]
> > > > > [org.drools:drools-bom:[unknown-version]],
> > > > > [C:\Users\e-tahchpet\.m2\repository\org\drools\drools-bom\6.4.0.Final\droo
> > > > > ls-bom-6.4.0.Final.pom], line 27, column 19
> > > >
> > > > Could be a regression due to MNG-5971. It's reproducible here. Thanks
> > > > for testing a SNAPSHOT Maven version.
> > > >
> > > > > If I comment this dependency then I see some colors on windows, but
> > > > > at the
> > > > > end of the build findbugs will break:
> > > > >
> > > > > [ERROR] Failed to execute goal
> > > > > org.codehaus.mojo:findbugs-maven-plugin:3.0.1:findbugs (findbugs) on
> > > > > project bom: Unable to parse configuration of mojo
> > > > > org.codehaus.mojo:findbugs-maven-plugin:3.0.1:findbugs for parameter
> > > > > pluginArtifacts: Cannot assign configuration entry 'pluginArtifacts'
> > > > > with
> > > > > value '${plugin.artifacts}' of type
> > > > > java.util.Collections.UnmodifiableRandomAccessList to property of type
> > > > > java.util.ArrayList -> [Help 1]
> > > >
> > > > That's already fixed upstream and will be fixed in the next FindBugs
> > > > plugin release.
> > > >
> > > > <https://github.com/gleclaire/findbugs-maven-plugin/commit/7954b94eff5c6b052
> > > > 4e7fe26d8f114b3c5450b86>
> > > >
> > > > Regards,
> > >
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [email protected]
> > > (mailto:[email protected])
> > > For additional commands, e-mail: [email protected]
> > > (mailto:[email protected])
> > >
> >
> >
> >
> > --
> > -----
> > Arnaud Héritier
> > http://aheritier.net
> > Mail/GTalk: aheritier AT gmail DOT com
> > Twitter/Skype : aheritier
> >
> >
> >
>
>
>
>
>
> --
> -----
> Arnaud Héritier
> http://aheritier.net
> Mail/GTalk: aheritier AT gmail DOT com
> Twitter/Skype : aheritier
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> (mailto:[email protected])
> For additional commands, e-mail: [email protected]
> (mailto:[email protected])
>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>0.1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>findbugs</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<xmlOutput>true</xmlOutput>
<findbugsXmlOutput>false</findbugsXmlOutput>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]