diff options
Diffstat (limited to 'BKUOnline/pom.xml')
-rw-r--r-- | BKUOnline/pom.xml | 33 |
1 files changed, 26 insertions, 7 deletions
diff --git a/BKUOnline/pom.xml b/BKUOnline/pom.xml index 5e6ac8ad..5fe0d52d 100644 --- a/BKUOnline/pom.xml +++ b/BKUOnline/pom.xml @@ -55,7 +55,7 @@ <version>1.0.2-SNAPSHOT</version> <scope>compile</scope> </dependency> - <!-- build BKUApplet prior to BKUOnline --> + <!-- build BKUApplet prior to BKUOnline --> <dependency> <groupId>at.gv.egiz</groupId> <artifactId>BKUApplet</artifactId> @@ -67,15 +67,27 @@ <artifactId>STALService</artifactId> <version>1.0.2-SNAPSHOT</version> </dependency> - + <!-- TODO move at.buergerkarte.namespaces.cardchannel.service out from STALXService + | so that BKUOnline does not have to depend on STALXService + <dependency> + <groupId>at.gv.egiz</groupId> + <artifactId>STALXService</artifactId> + <version>1.0.2-SNAPSHOT</version> + </dependency--> <!-- - | see https://wsit.dev.java.net/issues/show_bug.cgi?id=970 + | see https://wsit.dev.java.net/issues/show_bug.cgi?id=970 --> <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-rt</artifactId> - <version>2.1.4</version> - <!--scope>provided</scope--> + <version>2.1.5</version> + <!-- use JAX-WS RI with SJSXP instead of Woodstox --> + <exclusions> + <exclusion> + <groupId>woodstox</groupId> + <artifactId>wstx-asl</artifactId> + </exclusion> + </exclusions> <!-- conflict with SAAJ from java 6 ? <exclusions> <exclusion> <groupId>javax.xml.soap</groupId> <artifactId>saaj-api</artifactId> @@ -83,6 +95,12 @@ <groupId>com.sun.xml.messaging.saaj</groupId> <artifactId>saaj-impl</artifactId> </exclusion> </exclusions --> </dependency> + <!-- use JAX-WS RI with SJSXP instead of Woodstox --> + <dependency> + <artifactId>sjsxp</artifactId> + <groupId>com.sun.xml.stream</groupId> + <version>1.0.1</version> + </dependency> </dependencies> <properties> <netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server> @@ -164,15 +182,16 @@ </execution> </executions> <configuration> - <target>2.0</target> <verbose>true</verbose> <bindingDirectory>${basedir}/src/main/custom-binding</bindingDirectory> <bindingFiles> <bindingFile>stalservice-custom.xml</bindingFile> - <bindingFile>staltypes-custom.xml</bindingFile> + <bindingFile>staltypes-custom.xml</bindingFile> + <bindingFile>cardchannel-custom.xml</bindingFile> </bindingFiles> <wsdlDirectory>${basedir}/src/main/webapp/WEB-INF/wsdl</wsdlDirectory> <wsdlFiles> + <wsdlFile>stal-service.wsdl</wsdlFile> <wsdlFile>stal.wsdl</wsdlFile> </wsdlFiles> <sourceDestDir>${project.build.directory}/generated-sources/wsimport</sourceDestDir> |