Author: alessio.soldano(a)jboss.com
Date: 2008-05-19 03:39:59 -0400 (Mon, 19 May 2008)
New Revision: 7085
Added:
stack/native/trunk/modules/client/etc/
stack/native/trunk/modules/client/etc/default.mf
Modified:
stack/native/trunk/modules/client/pom.xml
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1666/JBWS1666TestCase.java
Log:
Fixing JBWS1666TestCase regression (adding default manifest for
jbossws-native-client.jar)
Added: stack/native/trunk/modules/client/etc/default.mf
===================================================================
--- stack/native/trunk/modules/client/etc/default.mf (rev 0)
+++ stack/native/trunk/modules/client/etc/default.mf 2008-05-19 07:39:59 UTC (rev 7085)
@@ -0,0 +1,10 @@
+Specification-Title: JBossWS
+Specification-Vendor: JBoss (
http://www.jboss.org)
+Implementation-Title: JBoss Web Services - Stack Native Client
+Implementation-URL:
http://www.jboss.org/products/jbossws
+Implementation-Vendor: JBoss, a division of Red Hat
+Implementation-Vendor-Id:
http://www.jboss.org
+Class-Path: jbossws-spi.jar jbossws-common.jar jbossws-framework.jar
jbossws-native-core.jar
+ jbossws-native-jaxrpc.jar jbossws-native-jaxws.jar jbossws-native-jaxws-ext.jar
jbossws-native-saaj.jar
+ activation.jar commons-logging.jar concurrent.jar javassist.jar jaxb-api.jar
jaxb-impl.jar
+ mail.jar jboss-remoting.jar jboss-xml-binding.jar policy.jar stax-api.jar wsdl4j.jar
Modified: stack/native/trunk/modules/client/pom.xml
===================================================================
--- stack/native/trunk/modules/client/pom.xml 2008-05-16 23:40:34 UTC (rev 7084)
+++ stack/native/trunk/modules/client/pom.xml 2008-05-19 07:39:59 UTC (rev 7085)
@@ -37,5 +37,18 @@
<artifactId>jboss-logging-log4j</artifactId>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestFile>etc/default.mf</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1666/JBWS1666TestCase.java
===================================================================
---
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1666/JBWS1666TestCase.java 2008-05-16
23:40:34 UTC (rev 7084)
+++
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1666/JBWS1666TestCase.java 2008-05-19
07:39:59 UTC (rev 7085)
@@ -29,6 +29,7 @@
import junit.framework.Test;
import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestHelper;
import org.jboss.wsf.test.JBossWSTestSetup;
import org.jboss.wsf.common.IOUtils;
@@ -64,8 +65,8 @@
// Setup the classpath - do not modify this lightheartedly.
// Maybe you should extend the Class-Path in the MANIFEST instead.
- StringBuffer cp = new StringBuffer("./test-classes");
- cp.append(":" + jbc + "/jbossws-client.jar");
+ StringBuffer cp = new
StringBuffer(System.getProperty("test.classes.directory"));
+ cp.append(":" + jbc + "/jbossws-native-client.jar");
if (isTargetJBoss50())
{
cp.append(":" + jbc + "/jboss-common-core.jar");