75 lines
2.5 KiB
XML
75 lines
2.5 KiB
XML
<?xml version="1.0"?>
|
|
<project 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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>redis</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
|
|
<name>redis</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
<version>${jedis.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.kstyrc</groupId>
|
|
<artifactId>embedded-redis</artifactId>
|
|
<version>${embedded-redis.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
<exclude>**/*LongRunningUnitTest.java</exclude>
|
|
<exclude>**/*ManualTest.java</exclude>
|
|
</excludes>
|
|
<testFailureIgnore>true</testFailureIgnore>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<jedis.version>2.9.0</jedis.version>
|
|
<embedded-redis.version>0.6</embedded-redis.version>
|
|
|
|
<!-- testing -->
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<maven-compiler-plugin.version>3.6.0</maven-compiler-plugin.version>
|
|
</properties>
|
|
</project>
|