aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml33
1 files changed, 28 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 67cafe0..4f0e7fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,6 +21,10 @@
<java.version>11</java.version>
<cxf.version>3.3.0</cxf.version>
<springboot.version>2.1.3.RELEASE</springboot.version>
+ <commonspool2.version>2.6.2</commonspool2.version>
+ <jaxwsapi.version>2.3.1</jaxwsapi.version>
+ <jwsapi.version>1.1</jwsapi.version>
+ <jedisclient.version>2.9.3</jedisclient.version>
</properties>
<dependencies>
@@ -37,20 +41,39 @@
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
<version>${cxf.version}</version>
</dependency>
-
+ <!-- redis -->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-redis</artifactId>
+ <version>${springboot.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>io.lettuce</groupId>
+ <artifactId>lettuce-core</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-pool2</artifactId>
+ <version>${commonspool2.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>redis.clients</groupId>
+ <artifactId>jedis</artifactId>
+ <version>${jedisclient.version}</version>
+ </dependency>
<!-- needed by cxf-codegen-plugin's generated code -->
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
- <version>2.3.1</version>
+ <version>${jaxwsapi.version}</version>
</dependency>
-
<dependency>
<groupId>javax.jws</groupId>
<artifactId>javax.jws-api</artifactId>
- <version>1.1</version>
+ <version>${jwsapi.version}</version>
</dependency>
-
</dependencies>
<build>