95 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			95 lines
		
	
	
		
			3.4 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>core-java-concurrency-collections</artifactId> | ||
|  |     <version>0.1.0-SNAPSHOT</version> | ||
|  |     <packaging>jar</packaging> | ||
|  |     <name>core-java-concurrency-collections</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>commons-io</groupId> | ||
|  |             <artifactId>commons-io</artifactId> | ||
|  |             <version>${commons-io.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-math3</artifactId> | ||
|  |             <version>${commons-math3.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.assertj</groupId> | ||
|  |             <artifactId>assertj-core</artifactId> | ||
|  |             <version>${assertj.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.jayway.awaitility</groupId> | ||
|  |             <artifactId>awaitility</artifactId> | ||
|  |             <version>${avaitility.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <finalName>core-java-concurrency-collections</finalName> | ||
|  |         <resources> | ||
|  |             <resource> | ||
|  |                 <directory>src/main/resources</directory> | ||
|  |                 <filtering>true</filtering> | ||
|  |             </resource> | ||
|  |         </resources> | ||
|  | 
 | ||
|  |         <plugins> | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-dependency-plugin</artifactId> | ||
|  |                 <executions> | ||
|  |                     <execution> | ||
|  |                         <id>copy-dependencies</id> | ||
|  |                         <phase>prepare-package</phase> | ||
|  |                         <goals> | ||
|  |                             <goal>copy-dependencies</goal> | ||
|  |                         </goals> | ||
|  |                         <configuration> | ||
|  |                             <outputDirectory>${project.build.directory}/libs</outputDirectory> | ||
|  |                         </configuration> | ||
|  |                     </execution> | ||
|  |                 </executions> | ||
|  |             </plugin> | ||
|  |              | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <!-- util --> | ||
|  |         <guava.version>21.0</guava.version> | ||
|  |         <commons-lang3.version>3.5</commons-lang3.version> | ||
|  |         <commons-math3.version>3.6.1</commons-math3.version> | ||
|  |         <commons-collections4.version>4.1</commons-collections4.version> | ||
|  |         <collections-generic.version>4.01</collections-generic.version> | ||
|  |         <!-- testing --> | ||
|  |         <assertj.version>3.6.1</assertj.version> | ||
|  |         <avaitility.version>1.7.0</avaitility.version> | ||
|  |     </properties> | ||
|  | 
 | ||
|  | </project> |