summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2014-10-16 13:42:04 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2014-10-16 13:42:04 +0200
commite2150f22562b4bc06307f4ac7b842687390e4856 (patch)
tree768250437cca30ab4fda039d924269e37fd99414 /pom.xml
parent2f3b7f180511a5e0af674e3a25ddbaabaa38d36c (diff)
downloadegovutils-e2150f22562b4bc06307f4ac7b842687390e4856.tar.gz
egovutils-e2150f22562b4bc06307f4ac7b842687390e4856.tar.bz2
egovutils-e2150f22562b4bc06307f4ac7b842687390e4856.zip
change webservice implementation to Apache CXF
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml37
1 files changed, 33 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 014502b..959b311 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,11 +5,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>at.gv.util</groupId>
<artifactId>egovutils</artifactId>
- <version>1.0.7</version>
+ <version>2.0.0</version>
<name>zuseutil</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <cxf.version>3.0.1</cxf.version>
</properties>
<build>
@@ -26,7 +27,15 @@
</goals>
</execution>
</executions>
- </plugin>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.7</source>
+ <target>1.7</target>
+ </configuration>
+ </plugin>
</plugins>
</build>
@@ -52,11 +61,31 @@
<artifactId>webservices-rt</artifactId>
<version>2.0.1</version>
</dependency> -->
- <dependency>
+<!-- <dependency>
<groupId>org.glassfish.metro</groupId>
<artifactId>webservices-rt</artifactId>
<version>2.3</version>
- </dependency>
+ </dependency> -->
+
+ <!-- Apache CXF libs-->
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-frontend-jaxws</artifactId>
+ <version>${cxf.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-transports-http</artifactId>
+ <version>${cxf.version}</version>
+ </dependency>
+ <!-- Jetty is needed if you're are not using the CXFServlet -->
+<!-- <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-transports-http-jetty</artifactId>
+ <version>${cxf.version}</version>
+ </dependency> -->
+
+
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>