You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2006/10/02 14:53:37 UTC

svn commit: r452013 - /cocoon/trunk/pom.xml

Author: reinhard
Date: Mon Oct  2 05:53:37 2006
New Revision: 452013

URL: http://svn.apache.org/viewvc?view=rev&rev=452013
Log:
add the template block configuration; add reports but only to a profile

Modified:
    cocoon/trunk/pom.xml

Modified: cocoon/trunk/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/pom.xml?view=diff&rev=452013&r1=452012&r2=452013
==============================================================================
--- cocoon/trunk/pom.xml (original)
+++ cocoon/trunk/pom.xml Mon Oct  2 05:53:37 2006
@@ -347,7 +347,7 @@
           <version>1.0.0-SNAPSHOT</version>
           <configuration>
             <repoUrl>http://cocoon.zones.apache.org:9263</repoUrl>
-            <editUrl>http://cocoon.zones.apache.org/daisy/cocoon-documentation/</editUrl>
+            <editUrl>http://cocoon.zones.apache.org/daisy/cdocs/</editUrl>  
             <daisyServerId>cocoon-daisy</daisyServerId>
             <cleanSiteXml>true</cleanSiteXml>
             <author>The Cocoon Community</author>
@@ -477,5 +477,94 @@
   <properties>
     <docs.deploymentBaseUrl>file://${basedir}/../../../site/site</docs.deploymentBaseUrl>
     <docs.externalUrl>http://cocoon.apache.org</docs.externalUrl>
-  </properties>
+  </properties>    
+  <profiles>
+    <profile>
+      <id>all-reports</id>
+      <pluginRepositories>
+				<pluginRepository>
+				    <id>snapshots.maven.codehaus</id>
+				    <url>http://snapshots.maven.codehaus.org/maven2/</url>
+				    <snapshots>
+				        <enabled>true</enabled>
+				    </snapshots>
+				    <releases>
+				        <enabled>false</enabled>
+				    </releases>
+				</pluginRepository>
+      </pluginRepositories>
+		  <reporting>
+		    <plugins>
+		      <!--plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-report-plugin</artifactId>
+						<version>2.0</version>
+		      </plugin-->   
+		      <plugin>
+		        <artifactId>maven-javadoc-plugin</artifactId>
+		        <version>2.0</version>
+		        <configuration>
+		          <maxmemory>512m</maxmemory>
+		        </configuration>        
+		      </plugin>
+		      <plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>changes-maven-plugin</artifactId>
+		        <version>2.0-beta-1</version>        
+		      </plugin>      
+		      <plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>taglist-maven-plugin</artifactId>
+		        <version>2.0</version>          
+		      </plugin>           
+		      <plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>jxr-maven-plugin</artifactId>
+		        <version>2.0-beta-1</version>                
+		      </plugin>           
+		      <!--plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>cobertura-maven-plugin</artifactId>
+		        <version>2.0</version>                 
+		      </plugin-->
+		      <plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>jdepend-maven-plugin</artifactId>
+		        <version>2.0-beta-1</version>     
+		      </plugin>    
+		      <plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>changelog-maven-plugin</artifactId>
+		        <version>2.0-beta-1</version>
+		        <reportSets>
+		          <reportSet>
+		            <id>dual-report</id>
+		            <configuration>
+		              <type>range</type>
+		              <range>30</range>
+		            </configuration>
+		            <reports>
+		              <report>changelog</report>
+		              <report>file-activity</report>
+		              <report>dev-activity</report>
+		            </reports>
+		          </reportSet>
+		        </reportSets>
+		      </plugin>
+		    </plugins>    
+		  </reporting>
+    </profile>
+    <profile>
+      <id>simian-report</id>
+      <reporting>
+        <plugins>
+		      <plugin>
+		        <groupId>org.codehaus.mojo</groupId>
+		        <artifactId>simian-report-maven-plugin</artifactId>
+		        <version>1.0-SNAPSHOT</version>
+		      </plugin>        
+		    </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>