79 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			79 lines
		
	
	
		
			2.9 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>core-java-collections-maps-2</artifactId> | ||
|  |     <version>0.1.0-SNAPSHOT</version> | ||
|  |     <name>core-java-collections-maps-2</name> | ||
|  |     <packaging>jar</packaging> | ||
|  | 
 | ||
|  |     <parent> | ||
|  |         <groupId>com.baeldung</groupId> | ||
|  |         <artifactId>parent-java</artifactId> | ||
|  |         <version>0.0.1-SNAPSHOT</version> | ||
|  |         <relativePath>../../parent-java</relativePath> | ||
|  |     </parent> | ||
|  | 
 | ||
|  |     <dependencies> | ||
|  |         <dependency> | ||
|  |             <groupId>org.eclipse.collections</groupId> | ||
|  |             <artifactId>eclipse-collections</artifactId> | ||
|  |             <version>${eclipse-collections.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>net.sf.trove4j</groupId> | ||
|  |             <artifactId>trove4j</artifactId> | ||
|  |             <version>${trove4j.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>it.unimi.dsi</groupId> | ||
|  |             <artifactId>fastutil</artifactId> | ||
|  |             <version>${fastutil.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>colt</groupId> | ||
|  |             <artifactId>colt</artifactId> | ||
|  |             <version>${colt.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.commons</groupId> | ||
|  |             <artifactId>commons-lang3</artifactId> | ||
|  |             <version>${commons-lang3.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.apache.commons</groupId> | ||
|  |             <artifactId>commons-collections4</artifactId> | ||
|  |             <version>${commons-collections4.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>one.util</groupId> | ||
|  |             <artifactId>streamex</artifactId> | ||
|  |             <version>${streamex.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.jayway.awaitility</groupId> | ||
|  |             <artifactId>awaitility</artifactId> | ||
|  |             <version>${avaitility.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.assertj</groupId> | ||
|  |             <artifactId>assertj-core</artifactId> | ||
|  |             <version>${assertj.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <streamex.version>0.6.5</streamex.version> | ||
|  |         <commons-collections4.version>4.1</commons-collections4.version> | ||
|  |         <avaitility.version>1.7.0</avaitility.version> | ||
|  |         <eclipse-collections.version>8.2.0</eclipse-collections.version> | ||
|  |         <trove4j.version>3.0.2</trove4j.version> | ||
|  |         <fastutil.version>8.1.0</fastutil.version> | ||
|  |         <colt.version>1.2.0</colt.version> | ||
|  |         <assertj.version>3.11.1</assertj.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |