diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-05-11 19:18:14 +0200 |
---|---|---|
committer | Thomas <> | 2021-06-25 15:54:08 +0200 |
commit | 350716d806f903ccde025912632adf0755b6defc (patch) | |
tree | eae329e9ad5d91ffed9a476b90ea08174073757c | |
parent | a19b0660a5accf78eb5a3a1e7b280e75711b94c8 (diff) | |
download | egovutils-350716d806f903ccde025912632adf0755b6defc.tar.gz egovutils-350716d806f903ccde025912632adf0755b6defc.tar.bz2 egovutils-350716d806f903ccde025912632adf0755b6defc.zip |
add dependencies for Apache CXF Cluster mode
switch version to 2.0.10-SNAPSHOT
-rw-r--r-- | pom.xml | 38 |
1 files changed, 34 insertions, 4 deletions
@@ -15,7 +15,6 @@ <cxf.version>3.4.1</cxf.version> <org.slf4j.version>1.7.30</org.slf4j.version> - <org.apache.httpcomponents.httpclient.version>4.5.13</org.apache.httpcomponents.httpclient.version> <commons-collections.version>3.2.2</commons-collections.version> <commons-lang.version>2.6</commons-lang.version> @@ -218,6 +217,7 @@ <version>${javax.xml.bind.jaxb-api.version}</version> </dependency> + <!-- Apache CXF libs --> <dependency> <groupId>org.apache.cxf</groupId> @@ -232,9 +232,39 @@ <!-- 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> + + <!-- 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> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-features-clustering</artifactId> + <version>${cxf.version}</version> + </dependency> + <dependency> + <groupId>org.apache.cxf</groupId> + <artifactId>cxf-rt-features-logging</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> <version>${commons-validator.version}</version> |