58 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			58 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
|  | <?xml version="1.0" encoding="UTF-8"?> | ||
|  | <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> | ||
|  |     <artifactId>spring-data-mongodb-2</artifactId> | ||
|  |     <name>spring-data-mongodb-2</name> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <artifactId>parent-spring-5</artifactId> | ||
|  |         <version>0.0.1-SNAPSHOT</version> | ||
|  |         <relativePath>../../parent-spring-5</relativePath> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework.data</groupId> | ||
|  |             <artifactId>spring-data-mongodb</artifactId> | ||
|  |             <version>${org.springframework.data.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.mongodb</groupId> | ||
|  |             <artifactId>mongodb-driver-sync</artifactId> | ||
|  |             <version>${mongodb-driver.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework</groupId> | ||
|  |             <artifactId>spring-core</artifactId> | ||
|  |             <version>${spring.version}</version> | ||
|  |             <exclusions> | ||
|  |                 <exclusion> | ||
|  |                     <artifactId>commons-logging</artifactId> | ||
|  |                     <groupId>commons-logging</groupId> | ||
|  |                 </exclusion> | ||
|  |             </exclusions> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.springframework</groupId> | ||
|  |             <artifactId>spring-test</artifactId> | ||
|  |             <version>${spring.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>de.flapdoodle.embed</groupId> | ||
|  |             <artifactId>de.flapdoodle.embed.mongo</artifactId> | ||
|  |             <version>${embed.mongo.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <org.springframework.data.version>3.0.3.RELEASE</org.springframework.data.version> | ||
|  |         <mongodb-driver.version>4.0.5</mongodb-driver.version> | ||
|  |         <embed.mongo.version>3.2.6</embed.mongo.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |