96 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|          
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <groupId>com.baeldung</groupId>
 | |
|     <artifactId>spring-data-redis</artifactId>
 | |
|     <version>1.0</version>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <properties>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <spring.version>4.2.5.RELEASE</spring.version>
 | |
|         <spring-data-redis>1.6.2.RELEASE</spring-data-redis>
 | |
|         <nosqlunit.version>0.8.0</nosqlunit.version>
 | |
|         <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>        
 | |
|     </properties>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.data</groupId>
 | |
|             <artifactId>spring-data-redis</artifactId>
 | |
|             <version>${spring-data-redis}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>cglib</groupId>
 | |
|             <artifactId>cglib-nodep</artifactId>
 | |
|             <version>2.2</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>log4j</groupId>
 | |
|             <artifactId>log4j</artifactId>
 | |
|             <version>1.2.16</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>redis.clients</groupId>
 | |
|             <artifactId>jedis</artifactId>
 | |
|             <version>2.5.1</version>
 | |
|             <type>jar</type>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-core</artifactId>
 | |
|             <version>${spring.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-context</artifactId>
 | |
|             <version>${spring.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>junit</groupId>
 | |
|             <artifactId>junit</artifactId>
 | |
|             <version>4.12</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-test</artifactId>
 | |
|             <version>${spring.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>com.lordofthejars</groupId>
 | |
|             <artifactId>nosqlunit-redis</artifactId>
 | |
|             <version>${nosqlunit.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
|    
 | |
|    <build> 
 | |
|       <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-surefire-plugin</artifactId>
 | |
|                 <version>${maven-surefire-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <excludes>
 | |
|                         <exclude>**/*IntegrationTest.java</exclude>
 | |
|                     </excludes>
 | |
|                     <systemPropertyVariables>
 | |
|                         <!-- <provPersistenceTarget>h2</provPersistenceTarget> -->
 | |
|                     </systemPropertyVariables>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
| 
 | |
|     </build>
 | |
| </project>
 |