This is the log I see when maven reports info plugin runs at second time in single build command
Building index for all the packages and classes... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/overview-tree.html... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/index-all.html... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/deprecated-list.html... Building index for all classes... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/allclasses-frame.html... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/allclasses-noframe.html... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/index.html... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/overview-summary.html... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/help-doc.html... Generating /home/subash/development/carbon/kernel/trunk/core/org.wso2.carbon.registry.core/target/site/testapidocs/stylesheet.css... [INFO] Generating "Distribution Management" report --- maven-project-info-reports-plugin:2.4 [INFO] Generating "About" report --- maven-project-info-reports-plugin:2.4 [INFO] Generating "Dependencies" report --- maven-project-info-reports-plugin:2.4 [WARNING] The repository url 'https://repository.jboss.org/maven2/' is invalid - Repository 'jboss-deprecated-repository' will be blacklisted. ...*and buid hangs*. Can we stop this running second time ? On Wed, Mar 21, 2012 at 9:47 PM, Subash Chaturanga <[email protected]>wrote: > Hi Likas, > > Thank you very much for the quick response. > > Your first link is the way I implemented the pom in maven 2. So I followed > one of the methods in the link you provided. According to following > configuration I must get only the specified reports in the site. But maven > tries to generate all reports including dependencies . > > NOTE: I found this log : [INFO] plugin > org.apache.maven.plugins:maven-project-info-reports-plugin will be executed > more than one time > I think this is what causing. Any idea ? > > > *My pom config* > * > * > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-site-plugin</artifactId> > <version>3.0</version> > <executions> > <execution> > <phase>package</phase> > <goals> > <goal>site</goal> > </goals> > <configuration> > <reportPlugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > > <artifactId>maven-project-info-reports-plugin</artifactId> > <version>2.4</version> > <reportSets> > <reportSet> > <reports> > <report>project-team</report> > <report>mailing-list</report> > <report>issue-tracking</report> > <report>license</report> > </reports> > </reportSet> > </reportSets> > </plugin> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-javadoc-plugin</artifactId> > <version>2.8</version> > </plugin> > </reportPlugins> > </configuration> > </execution> > </executions> > </plugin> > > > Thanks > /subash > -- Subash Chaturanga Department of Computer Science & Engineering University of Moratuwa Sri Lanka Blog - http://subashsdm.blogspot.com/ Twitter - http://twitter.com/subash89
