* JAVA-18264 Update article "A Guide to MongoDB with Java" * JAVA-18264 Update with suggestion * JAVA-18264 Additional updates * JAVA-18264 Format pom.xml --------- Co-authored-by: timis1 <noreplay@yahoo.com>
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.8 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>java-mongodb</artifactId>
 | |
|     <version>1.0-SNAPSHOT</version>
 | |
|     <name>java-mongodb</name>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>persistence-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.mongodb</groupId>
 | |
|             <artifactId>mongodb-driver-sync</artifactId>
 | |
|             <version>${mongo.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>dev.morphia.morphia</groupId>
 | |
|             <artifactId>morphia-core</artifactId>
 | |
|             <version>${morphia.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>mongodb</artifactId>
 | |
|             <version>${testcontainers.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.testcontainers</groupId>
 | |
|             <artifactId>junit-jupiter</artifactId>
 | |
|             <version>${testcontainers.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>de.flapdoodle.embed</groupId>
 | |
|             <artifactId>de.flapdoodle.embed.mongo</artifactId>
 | |
|             <version>${flapdoodle.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <properties>
 | |
|         <mongo.version>4.8.2</mongo.version>
 | |
|         <flapdoodle.version>4.4.1</flapdoodle.version>
 | |
|         <morphia.version>2.0.0</morphia.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |