[jboss-cvs] JBossAS SVN: r84166 - in branches/Branch_5_0/webservices: src/main/org/jboss/wsf/container/jboss50/transport and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Feb 13 06:21:56 EST 2009


Author: richard.opalka at jboss.com
Date: 2009-02-13 06:21:56 -0500 (Fri, 13 Feb 2009)
New Revision: 84166

Modified:
   branches/Branch_5_0/webservices/build.xml
   branches/Branch_5_0/webservices/pom.xml
   branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java
Log:
[JBAS-6496] fixing build issues

Modified: branches/Branch_5_0/webservices/build.xml
===================================================================
--- branches/Branch_5_0/webservices/build.xml	2009-02-13 11:09:36 UTC (rev 84165)
+++ branches/Branch_5_0/webservices/build.xml	2009-02-13 11:21:56 UTC (rev 84166)
@@ -70,10 +70,12 @@
       <path refid="jboss.aop.classpath"/>
       <path refid="jboss.common.core.classpath"/>
       <path refid="jboss.common.logging.spi.classpath"/>
+      <path refid="jboss.jboss.cl.classpath"/>
       <path refid="jboss.jboss.ejb3.core.classpath" />   
       <path refid="jboss.jboss.ejb3.ext.api.classpath" />   
       <path refid="jboss.jboss.ejb3.interceptors.classpath" />   
       <path refid="jboss.jboss.javaee.classpath"/>
+      <path refid="jboss.jboss.man.classpath"/>
       <path refid="jboss.jboss.security.spi.classpath"/>
       <path refid="jboss.jboss.vfs.classpath"/>
       <path refid="jboss.jbosssx.classpath"/>

Modified: branches/Branch_5_0/webservices/pom.xml
===================================================================
--- branches/Branch_5_0/webservices/pom.xml	2009-02-13 11:09:36 UTC (rev 84165)
+++ branches/Branch_5_0/webservices/pom.xml	2009-02-13 11:21:56 UTC (rev 84166)
@@ -128,7 +128,6 @@
             </goals>
             <configuration>
               <descriptors>
-                <descriptor>src/scripts/assembly-container.xml</descriptor>
                 <descriptor>src/scripts/assembly-resources.xml</descriptor>
               </descriptors>
             </configuration>

Modified: branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java
===================================================================
--- branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java	2009-02-13 11:09:36 UTC (rev 84165)
+++ branches/Branch_5_0/webservices/src/main/org/jboss/wsf/container/jboss50/transport/DynamicEndpointDeploymentAspect.java	2009-02-13 11:21:56 UTC (rev 84166)
@@ -26,6 +26,8 @@
 
 import javax.xml.ws.WebServiceException;
 
+import org.jboss.classloading.spi.dependency.ClassLoading;
+import org.jboss.classloading.spi.dependency.Module;
 import org.jboss.deployers.client.plugins.deployment.AbstractDeployment;
 import org.jboss.deployers.client.spi.DeployerClient;
 import org.jboss.deployers.client.spi.DeploymentFactory;
@@ -34,10 +36,10 @@
 import org.jboss.deployers.structure.spi.DeploymentUnit;
 import org.jboss.logging.Logger;
 import org.jboss.metadata.web.jboss.JBossWebMetaData;
-import org.jboss.wsf.container.jboss50.deployment.tomcat.WebMetaDataModifier;
 import org.jboss.wsf.spi.deployment.Deployment;
 import org.jboss.wsf.spi.deployment.DeploymentAspect;
 import org.jboss.wsf.spi.deployment.WSFDeploymentException;
+import org.jboss.wsf.container.jboss50.deployment.tomcat.WebMetaDataModifier;
 
 /**
  * Deploy the generated webapp to JBoss
@@ -85,6 +87,7 @@
          mutableAttachments.addAttachment("org.jboss.web.explicitDocBase", "/", String.class);
          mutableAttachments.addAttachment(ClassLoaderFactory.class, new ContextClassLoaderFactory(epLoader));
          mutableAttachments.addAttachment(JBossWebMetaData.class, jbwmd);
+         mutableAttachments.addAttachment(Module.class, ClassLoading.getModuleForClassLoader(epLoader));
          mainDeployer.deploy(deployment);
          
          deployments.put(contextRoot, deployment);
@@ -113,6 +116,7 @@
    private AbstractDeployment createSimpleDeployment(String name)
    {
       AbstractDeployment unit = new AbstractDeployment(name);
+      // There is one top level deployment
       factory.addContext(unit, "");
       return unit;
    }




More information about the jboss-cvs-commits mailing list