Hi, I have added the following in my pom.xml:
<!-- ajdoc is a tool that extends javadoc --> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>aspectj-maven-plugin</artifactId> <version>${aspectj.maven.plugin.version}</version> <configuration> <verbose>true</verbose> <privateScope>true</privateScope> <complianceLevel>${java.version}</complianceLevel> </configuration> <reportSets> <reportSet> <reports> <report>aspectj-report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> When I execute: mvn clean compile site:site I see the following: [INFO] 1 report configured for maven-jxr-plugin:2.5: jxr [INFO] configuring report plugin org.codehaus.mojo:aspectj-maven-plugin:1.11.1-FORK [INFO] 1 report configured for aspectj-maven-plugin:1.11.1-FORK: aspectj-report [INFO] Rendering site with default locale English (en) [INFO] Relativizing decoration links with respect to localized project URL: http://<deployserver>/site/java-runtime-stats/collector/ [INFO] Rendering content with org.apache.maven.skins:maven-fluido-skin:jar:1.7 skin. [INFO] Skipped "About" report (maven-project-info-reports-plugin:3.0.0:index), file "index.html" already exists. [INFO] Skipped "AspectJ Report" report (aspectj-maven-plugin:1.11.1-FORK:aspectj-report), file "index.html" already exists. And no reports is generated for ajdoc. Any idea what I am missing? br, //mikael
_______________________________________________ aspectj-users mailing list aspectj-users@eclipse.org To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/aspectj-users