You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Pablo Muñiz <pa...@terra.es> on 2005/09/22 10:52:58 UTC

[m2] Help on using maven-project-info-reports-plugin

Hi all !!

    I'm trying to include report generation in my project by using 
maven-project-info-reports-plugin. Bellow you can see a snippet of pom.xml

    <reporting>
        <plugins>
            <plugin>
                <artifactId>
                    maven-project-info-reports-plugin
                </artifactId>
                <reportSets>
                    <reportSet>
                        <report>dependencies</report>
                        <report>license</report>                       
                    </reportSet>
                </reportSets>
            </plugin>       
            <plugin>
                <artifactId>
                    maven-checkstyle-plugin
                </artifactId>
            </plugin>               
        </plugins>
    </reporting>

Although chekstyle report is generated, nothing happens with 
dependencies or license report.

Any ideas with what is wrong?

Thanks in advance.

Best regards,

Pablo.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: [m2] Help on using maven-project-info-reports-plugin

Posted by Brett Porter <br...@gmail.com>.
Missing <reports> around the two reports. beta-1 gives an appropriate
error for this.

- Brett

On 9/22/05, Pablo Muñiz <pa...@terra.es> wrote:
> Hi all !!
>
>     I'm trying to include report generation in my project by using
> maven-project-info-reports-plugin. Bellow you can see a snippet of pom.xml
>
>     <reporting>
>         <plugins>
>             <plugin>
>                 <artifactId>
>                     maven-project-info-reports-plugin
>                 </artifactId>
>                 <reportSets>
>                     <reportSet>
>                         <report>dependencies</report>
>                         <report>license</report>
>                     </reportSet>
>                 </reportSets>
>             </plugin>
>             <plugin>
>                 <artifactId>
>                     maven-checkstyle-plugin
>                 </artifactId>
>             </plugin>
>         </plugins>
>     </reporting>
>
> Although chekstyle report is generated, nothing happens with
> dependencies or license report.
>
> Any ideas with what is wrong?
>
> Thanks in advance.
>
> Best regards,
>
> Pablo.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org