55 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			55 lines
		
	
	
		
			2.1 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> | ||
|  |     <artifactId>java-collections-maps</artifactId> | ||
|  |     <version>0.1.0-SNAPSHOT</version> | ||
|  |     <packaging>jar</packaging> | ||
|  |     <name>java-collections-maps</name> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <artifactId>parent-java</artifactId> | ||
|  |         <version>0.0.1-SNAPSHOT</version> | ||
|  |         <relativePath>../parent-java</relativePath> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.commons</groupId> | ||
|  |             <artifactId>commons-collections4</artifactId> | ||
|  |             <version>${commons-collections4.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.jayway.awaitility</groupId> | ||
|  |             <artifactId>awaitility</artifactId> | ||
|  |             <version>${avaitility.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.commons</groupId> | ||
|  |             <artifactId>commons-lang3</artifactId> | ||
|  |             <version>${commons-lang3.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.assertj</groupId> | ||
|  |             <artifactId>assertj-core</artifactId> | ||
|  |             <version>${assertj.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>one.util</groupId> | ||
|  |             <artifactId>streamex</artifactId> | ||
|  |             <version>0.6.5</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <commons-lang3.version>3.5</commons-lang3.version> | ||
|  |         <commons-collections4.version>4.1</commons-collections4.version> | ||
|  |         <collections-generic.version>4.01</collections-generic.version> | ||
|  |         <avaitility.version>1.7.0</avaitility.version> | ||
|  |         <assertj.version>3.6.1</assertj.version> | ||
|  |         <eclipse.collections.version>7.1.0</eclipse.collections.version> | ||
|  |     </properties> | ||
|  | </project> |