Author: brett Date: Thu Jun 22 16:21:29 2006 New Revision: 416503 URL: http://svn.apache.org/viewvc?rev=416503&view=rev Log: fix tests since change to archiver
Modified: maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-classpath/plugin-config.xml maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-other-attrs/plugin-config.xml Modified: maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-classpath/plugin-config.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-classpath/plugin-config.xml?rev=416503&r1=416502&r2=416503&view=diff ============================================================================== --- maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-classpath/plugin-config.xml (original) +++ maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-classpath/plugin-config.xml Thu Jun 22 16:21:29 2006 @@ -5,13 +5,14 @@ <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> - <project implementation="org.apache.maven.plugin.war.stub.MavenProjectArtifactsStub" /> - <warSourceDirectory>${basedir}/target/test-classes/unit/manifest/manifest-with-classpath/src/main</warSourceDirectory> - <archive> - <manifest> - <addClasspath>true</addClasspath> - </manifest> - </archive> + <project implementation="org.apache.maven.plugin.war.stub.MavenProjectArtifactsStub"/> + <warSourceDirectory> + ${basedir}/target/test-classes/unit/manifest/manifest-with-classpath/src/main</warSourceDirectory> + <archive> + <manifest> + <addClasspath>true</addClasspath> + </manifest> + </archive> </configuration> </plugin> </plugins> Modified: maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-other-attrs/plugin-config.xml URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-other-attrs/plugin-config.xml?rev=416503&r1=416502&r2=416503&view=diff ============================================================================== --- maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-other-attrs/plugin-config.xml (original) +++ maven/plugins/trunk/maven-war-plugin/src/test/resources/unit/manifest/manifest-with-other-attrs/plugin-config.xml Thu Jun 22 16:21:29 2006 @@ -5,13 +5,16 @@ <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> - <project implementation="org.apache.maven.plugin.war.stub.MavenProjectBasicStub" /> - <warSourceDirectory>${basedir}/target/test-classes/unit/manifest/manifest-with-other-attrs/src/main</warSourceDirectory> - <archive> - <manifest> - <addExtensions>true</addExtensions> - </manifest> - </archive> + <project implementation="org.apache.maven.plugin.war.stub.MavenProjectBasicStub"/> + <warSourceDirectory> + ${basedir}/target/test-classes/unit/manifest/manifest-with-other-attrs/src/main</warSourceDirectory> + <archive> + <manifest> + <addExtensions>true</addExtensions> + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> + <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> + </manifest> + </archive> </configuration> </plugin> </plugins>