2016-06-22 20:26:55 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project
|
2016-07-08 07:35:45 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
2016-06-22 20:26:55 -04:00
|
|
|
|
2016-07-08 07:35:45 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>redis</artifactId>
|
|
|
|
<version>0.1-SNAPSHOT</version>
|
2016-06-22 20:26:55 -04:00
|
|
|
|
2016-07-08 07:35:45 -04:00
|
|
|
<name>redis</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
2016-06-22 20:26:55 -04:00
|
|
|
|
2016-07-08 07:35:45 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
<version>2.8.1</version>
|
|
|
|
</dependency>
|
2016-06-22 20:26:55 -04:00
|
|
|
|
2016-07-08 07:35:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.kstyrc</groupId>
|
|
|
|
<artifactId>embedded-redis</artifactId>
|
|
|
|
<version>0.6</version>
|
|
|
|
</dependency>
|
2016-06-22 20:26:55 -04:00
|
|
|
|
2016-07-08 07:35:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-06-22 20:26:55 -04:00
|
|
|
|
2016-07-08 09:11:55 -04:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
2016-07-08 07:35:45 -04:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<!-- testing -->
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
</properties>
|
2016-06-22 20:26:55 -04:00
|
|
|
</project>
|