Author: niallp
Date: Mon Jan  7 18:19:50 2008
New Revision: 609834

URL: http://svn.apache.org/viewvc?rev=609834&view=rev
Log:
Add the cobertura plugin, but exclude the GPL licensed javascript files from 
the binary distro (report seems to work fine without them)

Modified:
    commons/proper/io/trunk/pom.xml
    commons/proper/io/trunk/src/main/assembly/bin.xml

Modified: commons/proper/io/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/io/trunk/pom.xml?rev=609834&r1=609833&r2=609834&view=diff
==============================================================================
--- commons/proper/io/trunk/pom.xml (original)
+++ commons/proper/io/trunk/pom.xml Mon Jan  7 18:19:50 2008
@@ -282,6 +282,10 @@
   <reporting>
     <plugins>
       <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-changes-plugin</artifactId>
         <configuration>

Modified: commons/proper/io/trunk/src/main/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/assembly/bin.xml?rev=609834&r1=609833&r2=609834&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/assembly/bin.xml (original)
+++ commons/proper/io/trunk/src/main/assembly/bin.xml Mon Jan  7 18:19:50 2008
@@ -37,8 +37,13 @@
             </includes>
         </fileSet>
         <fileSet>
-            <directory>target/site/apidocs</directory>
-            <outputDirectory>apidocs</outputDirectory>
+            <directory>target/site</directory>
+            <outputDirectory>docs</outputDirectory>
+            <excludes>
+                <exclude>**/customsorttypes.js</exclude>
+                <exclude>**/sortabletable.js</exclude>
+                <exclude>**/stringbuilder.js</exclude>
+            </excludes>
         </fileSet>
     </fileSets>
 </assembly>


Reply via email to