You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2006/08/22 14:58:00 UTC

svn commit: r433619 - /maven/plugins/trunk/maven-assembly-plugin/src/test/java/org/apache/maven/plugin/assembly/filter/ComponentsXmlArchiverFileFilterTest.java

Author: jvanzyl
Date: Tue Aug 22 05:57:59 2006
New Revision: 433619

URL: http://svn.apache.org/viewvc?rev=433619&view=rev
Log:
o fix breakages cause by API changes to the plexus-archiver

Modified:
    maven/plugins/trunk/maven-assembly-plugin/src/test/java/org/apache/maven/plugin/assembly/filter/ComponentsXmlArchiverFileFilterTest.java

Modified: maven/plugins/trunk/maven-assembly-plugin/src/test/java/org/apache/maven/plugin/assembly/filter/ComponentsXmlArchiverFileFilterTest.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/test/java/org/apache/maven/plugin/assembly/filter/ComponentsXmlArchiverFileFilterTest.java?rev=433619&r1=433618&r2=433619&view=diff
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/test/java/org/apache/maven/plugin/assembly/filter/ComponentsXmlArchiverFileFilterTest.java (original)
+++ maven/plugins/trunk/maven-assembly-plugin/src/test/java/org/apache/maven/plugin/assembly/filter/ComponentsXmlArchiverFileFilterTest.java Tue Aug 22 05:57:59 2006
@@ -401,7 +401,21 @@
         {
             throw new UnsupportedOperationException( "not supported" );
         }
+        
+        public void setForced( boolean forced )
+        {
+            throw new UnsupportedOperationException( "not supported" );            
+        }
 
+        public boolean isForced()
+        {
+            throw new UnsupportedOperationException( "not supported" );            
+        }
+
+        public boolean isSupportingForced()
+        {
+            throw new UnsupportedOperationException( "not supported" );            
+        }
     }
 
 }