Author: brianf Date: Wed Feb 13 19:28:35 2008 New Revision: 627646 URL: http://svn.apache.org/viewvc?rev=627646&view=rev Log: (empty)
Added: maven/enforcer/trunk/src/ maven/enforcer/trunk/src/site/ maven/enforcer/trunk/src/site/site.xml Modified: maven/enforcer/trunk/ (props changed) maven/enforcer/trunk/enforcer-api/ (props changed) maven/enforcer/trunk/enforcer-rules/ (props changed) maven/enforcer/trunk/maven-enforcer-plugin/ (props changed) maven/enforcer/trunk/pom.xml Propchange: maven/enforcer/trunk/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Wed Feb 13 19:28:35 2008 @@ -1,2 +1,5 @@ target archetype.properties +target-eclipse +.classpath +.project Propchange: maven/enforcer/trunk/enforcer-api/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Wed Feb 13 19:28:35 2008 @@ -8,3 +8,5 @@ *.iml .settings archetype.properties +target-eclipse +*.ser Propchange: maven/enforcer/trunk/enforcer-rules/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Wed Feb 13 19:28:35 2008 @@ -3,3 +3,5 @@ .project .settings archetype.properties +target-eclipse +*.ser Propchange: maven/enforcer/trunk/maven-enforcer-plugin/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Wed Feb 13 19:28:35 2008 @@ -4,3 +4,4 @@ .settings cobertura.ser archetype.properties +target-eclipse Modified: maven/enforcer/trunk/pom.xml URL: http://svn.apache.org/viewvc/maven/enforcer/trunk/pom.xml?rev=627646&r1=627645&r2=627646&view=diff ============================================================================== --- maven/enforcer/trunk/pom.xml (original) +++ maven/enforcer/trunk/pom.xml Wed Feb 13 19:28:35 2008 @@ -244,6 +244,15 @@ </dependency> </dependencies> </dependencyManagement> + <reporting> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <version>2.0</version> + </plugin> + </plugins> + </reporting> <modules> <module>enforcer-api</module> <module>enforcer-rules</module> Added: maven/enforcer/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/enforcer/trunk/src/site/site.xml?rev=627646&view=auto ============================================================================== --- maven/enforcer/trunk/src/site/site.xml (added) +++ maven/enforcer/trunk/src/site/site.xml Wed Feb 13 19:28:35 2008 @@ -0,0 +1,40 @@ +<project name="${project.name}"> + <!-- TODO: banners, skin, publish date, version should be inherited from Maven itself --> + <bannerLeft> + <name>${project.name}</name> + <src>http://maven.apache.org/images/apache-maven-project-2.png</src> + <href>http://maven.apache.org/</href> + </bannerLeft> + <bannerRight> + <src>http://maven.apache.org/images/maven-logo-2.gif</src> + </bannerRight> + <skin> + <groupId>org.apache.maven.skins</groupId> + <artifactId>maven-stylus-skin</artifactId> + </skin> + <publishDate format="dd MMM yyyy" position="left" /> + <version position="left" /> + <body> + <!-- TODO: Link, head, reports should be inherited --> + <!-- TODO: use breadcrumbs more structure, links for links, and inherit subprojects as a menu or not at all --> + <links> + <item name="Maven 1.x" href="http://maven.apache.org/maven-1.x"/> + <item name="Maven 2.x" href="http://maven.apache.org/"/> + <item name="Maven 2.x Plugins" href="http://maven.apache.org/plugins/"/> + <item name="Continuum" href="http://maven.apache.org/continuum"/> + <item name="SCM" href="http://maven.apache.org/scm"/> + <item name="Wagon" href="http://maven.apache.org/wagon"/> + <item name="JXR" href="http://maven.apache.org/jxr"/> + <item name="Doxia" href="http://maven.apache.org/doxia"/> + </links> + <head> + <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> + </script> + <script type="text/javascript"> + _uacct = "UA-140879-1"; + urchinTracker(); + </script> + </head> + <menu ref="reports" inherit="bottom" /> + </body> +</project>