[ 
http://jira.codehaus.org/browse/MFINDBUGS-137?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=262531#action_262531
 ] 

Bruno Marti commented on MFINDBUGS-137:
---------------------------------------

no, no explicitly ANT dependency defined.

1. switched back to maven-findbugs=2.3.1 and everthing works fine.
findbugs.xml and findbugsXml.xml is created and findbugs.html is generated.

2. with 2.3.2,
I have to define the report section as follow. Then findbugs runs and throws no 
exception anymore, 
but the report is empty and no findbugs.xml is created. Strange.

{code}
<build>
<plugins>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-site-plugin</artifactId>
    <version>3.0-beta-3</version>
    <configuration>
        <reportPlugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-plugin-plugin</artifactId>
            <version>2.7</version>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>findbugs-maven-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <failOnError>false</failOnError>
                <threshold>Low</threshold>
                <effort>Max</effort>
                <includeTests>false</includeTests>
                <debug>true</debug>
                <trace>true</trace>
                <fork>true</fork>
                ...
{code}

I'm trying to build a little testproject next week.


> Maven 3: Build error under site-plugin
> --------------------------------------
>
>                 Key: MFINDBUGS-137
>                 URL: http://jira.codehaus.org/browse/MFINDBUGS-137
>             Project: Maven 2.x FindBugs Plugin
>          Issue Type: Bug
>    Affects Versions: 2.3.2
>         Environment: winxp, maven 3.0.3, ant 1.8.2
>            Reporter: Bruno Marti
>
> I'm getting this build error under *site:site* but everything works fine with 
> *findbugs:findbugs* with maven 3.
> {code}
> [ERROR] Failed to execute goal 
> org.apache.maven.plugins:maven-site-plugin:3.0-beta-3:site (default-site) on 
> project basis_environment: Execution default-site of goal 
> org.apache.maven.plugins:maven-site-plugin:3.0-beta-3:site failed: The 
> following error occurred while executing this line:
> [ERROR] 
> jar:file:/C:/.m2/repository/org/apache/ant/ant/1.8.2/ant-1.8.2.jar!/org/apache/tools/ant/antlib.xml:37:
>  Problem: failed to create task or type componentdef
> [ERROR] Cause: The name is undefined.
> [ERROR] Action: Check the spelling.
> [ERROR] Action: Check that any custom tasks/types have been declared.
> [ERROR] Action: Check that any <presetdef>/<macrodef> declarations have taken 
> place.
> [ERROR] -> [Help 1]
> org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
> goal org.apache.maven.plugins:maven-site-plugin:3.0-beta-3:site 
> (default-site) on project basis_environment: Execution default-site of goal 
> org.apache.maven.plugins:maven-site-plugin:3.0-beta-3:site failed: The 
> following error occurred while executing this line:
> jar:file:/C:/.m2/repository/org/apache/ant/ant/1.8.2/ant-1.8.2.jar!/org/apache/tools/ant/antlib.xml:37:
>  Problem: failed to create task or type componentdef
> Cause: The name is undefined.
> Action: Check the spelling.
> Action: Check that any custom tasks/types have been declared.
> Action: Check that any <presetdef>/<macrodef> declarations have taken place.
>       at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:225)
>       at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
>       at 
> org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
>       at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
>       at 
> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:60)
>       at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
>       at 
> org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
>       at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319)
>       at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
>       at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
>       at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
>       at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
>       at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>       at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>       at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>       at java.lang.reflect.Method.invoke(Method.java:597)
>       at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
>       at 
> org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
>       at 
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
>       at 
> org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:354)
> {code}
> My plugin configurations:
> {code:xml}
> <plugin>
>     <groupId>org.apache.maven.plugins</groupId>
>     <artifactId>maven-site-plugin</artifactId>
>     <version>3.0-beta-3</version>
>     <configuration>
>         <reportPlugins>
>             <plugin>
>                 <groupId>org.codehaus.mojo</groupId>
>                 <artifactId>findbugs-maven-plugin</artifactId>
>                 <version>2.3.2</version>
>                 <configuration>
>                     <failOnError>false</failOnError>
>                     <threshold>Low</threshold>
>                     <effort>Max</effort>
>                     <includeTests>false</includeTests>
>                     <debug>true</debug>
>                     <trace>true</trace>
>                     <fork>true</fork>
>                     ...
> {code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to