Skip to content
Snippets Groups Projects
Commit 30ea17c1 authored by Patient NTUMBA's avatar Patient NTUMBA
Browse files

Remove dpws dependencies in vsb-manager

parent 1d40a590
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<module>gm-soap</module> <module>gm-soap</module>
<module>gm-mqtt</module> <module>gm-mqtt</module>
<module>gm-coap</module> <module>gm-coap</module>
<module>gm-dpws</module> <!-- <module>gm-dpws</module> -->
</modules> </modules>
<dependencies> <dependencies>
<!-- Chorevolution --> <!-- Chorevolution -->
......
...@@ -109,12 +109,12 @@ ...@@ -109,12 +109,12 @@
<include>pom-soap.xml</include> <include>pom-soap.xml</include>
</includes> </includes>
</resource> </resource>
<resource> <!-- <resource>
<directory>../protocol-pool/gm-dpws</directory> <directory>../protocol-pool/gm-dpws</directory>
<includes> <includes>
<include>pom-dpws.xml</include> <include>pom-dpws.xml</include>
</includes> </includes>
</resource> </resource> -->
</resources> </resources>
<plugins> <plugins>
......
...@@ -197,7 +197,7 @@ public class VsbManager { ...@@ -197,7 +197,7 @@ public class VsbManager {
Constants.target_namespace = "eu.chorevolution.vsb.bindingcomponent.generated"; Constants.target_namespace = "eu.chorevolution.vsb.bindingcomponent.generated";
Constants.target_namespace_path = Constants.target_namespace.replace(".", File.separator); Constants.target_namespace_path = Constants.target_namespace.replace(".", File.separator);
Constants.soap_service_name = "BC"+Constants.service_name+"SoapEndpoint"; Constants.soap_service_name = "BC"+Constants.service_name+"SoapEndpoint";
Constants.dpws_service_name = "BC"+Constants.service_name+"DPWSEndpoint"; // Constants.dpws_service_name = "BC"+Constants.service_name+"DPWSEndpoint";
Constants.wsdlDestination = new File(Constants.generatedCodePath).getAbsolutePath(); Constants.wsdlDestination = new File(Constants.generatedCodePath).getAbsolutePath();
} }
...@@ -234,19 +234,19 @@ public class VsbManager { ...@@ -234,19 +234,19 @@ public class VsbManager {
String vsb_manager_pomxml = new File(".").getAbsolutePath() + File.separator + "pom.xml"; String vsb_manager_pomxml = new File(".").getAbsolutePath() + File.separator + "pom.xml";
String gm_soap_pomxml = new File(".").getAbsolutePath() + File.separator + ".." + File.separator + "protocol-pool" + File.separator + "gm-soap" + File.separator + "pom-gm-soap.xml"; String gm_soap_pomxml = new File(".").getAbsolutePath() + File.separator + ".." + File.separator + "protocol-pool" + File.separator + "gm-soap" + File.separator + "pom-gm-soap.xml";
String gm_coap_pomxml = new File(".").getAbsolutePath() + File.separator + ".." + File.separator + "protocol-pool" + File.separator + "gm-coap" + File.separator + "pom.xml"; String gm_coap_pomxml = new File(".").getAbsolutePath() + File.separator + ".." + File.separator + "protocol-pool" + File.separator + "gm-coap" + File.separator + "pom.xml";
String gm_dpws_pomxml = new File(".").getAbsolutePath() + File.separator + ".." + File.separator + "protocol-pool" + File.separator + "gm-dpws" + File.separator + "pom.xml"; // String gm_dpws_pomxml = new File(".").getAbsolutePath() + File.separator + ".." + File.separator + "protocol-pool" + File.separator + "gm-dpws" + File.separator + "pom.xml";
if(STARTING_FROM_JAR){ if(STARTING_FROM_JAR){
vsb_manager_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"pom-vsb-manager.xml"); vsb_manager_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"pom-vsb-manager.xml");
gm_soap_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"gm-soap/pom-gm-soap.xml"); gm_soap_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"gm-soap/pom-gm-soap.xml");
gm_coap_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"gm-coap/pom.xml"); gm_coap_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"gm-coap/pom.xml");
gm_dpws_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"gm-dpws/pom.xml"); // gm_dpws_pomxml = PathResolver.myFilePath(BcManagerRestService.class,"gm-dpws/pom.xml");
} }
warGenerator.addDependencyFiles(vsb_manager_pomxml); warGenerator.addDependencyFiles(vsb_manager_pomxml);
warGenerator.addDependencyFiles(gm_soap_pomxml); warGenerator.addDependencyFiles(gm_soap_pomxml);
warGenerator.addDependencyFiles(gm_coap_pomxml); warGenerator.addDependencyFiles(gm_coap_pomxml);
warGenerator.addDependencyFiles(gm_dpws_pomxml); // warGenerator.addDependencyFiles(gm_dpws_pomxml);
return warGenerator.generate(busProtocol==ProtocolType.SOAP); return warGenerator.generate(busProtocol==ProtocolType.SOAP);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment