2015-12-25 13:24:54 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-05-12 14:32:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2016-03-17 07:09:47 -04:00
|
|
|
<artifactId>spring-data-redis</artifactId>
|
2016-03-17 06:40:49 -04:00
|
|
|
<version>1.0</version>
|
2016-03-06 05:21:31 -05:00
|
|
|
<packaging>jar</packaging>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2017-05-09 16:37:43 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
</parent>
|
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-04-23 07:26:31 -04:00
|
|
|
<spring.version>4.3.7.RELEASE</spring.version>
|
|
|
|
<spring-data-redis>1.8.1.RELEASE</spring-data-redis>
|
2017-05-12 14:32:54 -04:00
|
|
|
<cglib.version>3.2.4</cglib.version>
|
|
|
|
<jedis.version>2.9.0</jedis.version>
|
2016-12-07 12:17:18 -05:00
|
|
|
<nosqlunit.version>0.10.0</nosqlunit.version>
|
2016-03-06 05:21:31 -05:00
|
|
|
</properties>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
<version>${spring-data-redis}</version>
|
|
|
|
</dependency>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib-nodep</artifactId>
|
2016-12-07 12:17:18 -05:00
|
|
|
<version>${cglib.version}</version>
|
2016-03-06 05:21:31 -05:00
|
|
|
</dependency>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
2016-12-07 12:17:18 -05:00
|
|
|
<version>${jedis.version}</version>
|
2016-03-06 05:21:31 -05:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
2017-04-19 10:14:10 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
2017-05-12 14:32:54 -04:00
|
|
|
</exclusions>
|
2016-03-06 05:21:31 -05:00
|
|
|
</dependency>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-12-25 13:24:54 -05:00
|
|
|
|
2016-03-06 05:21:31 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.lordofthejars</groupId>
|
|
|
|
<artifactId>nosqlunit-redis</artifactId>
|
|
|
|
<version>${nosqlunit.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-05-12 14:32:54 -04:00
|
|
|
|
2015-12-25 13:24:54 -05:00
|
|
|
</project>
|