121 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			121 lines
		
	
	
		
			4.2 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>java-streams</artifactId> | ||
|  |     <version>0.1.0-SNAPSHOT</version> | ||
|  |     <packaging>jar</packaging> | ||
|  |     <name>java-streams</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-lang3</artifactId> | ||
|  |             <version>${commons-lang3.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>log4j</groupId> | ||
|  |             <artifactId>log4j</artifactId> | ||
|  |             <version>${log4j.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.projectlombok</groupId> | ||
|  |             <artifactId>lombok</artifactId> | ||
|  |             <version>${lombok.version}</version> | ||
|  |             <scope>provided</scope> | ||
|  |         </dependency> | ||
|  |         <!-- test scoped --> | ||
|  |         <dependency> | ||
|  |             <groupId>org.assertj</groupId> | ||
|  |             <artifactId>assertj-core</artifactId> | ||
|  |             <version>${assertj.version}</version> | ||
|  |             <scope>test</scope> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>com.codepoetics</groupId> | ||
|  |             <artifactId>protonpack</artifactId> | ||
|  |             <version>${protonpack.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>io.vavr</groupId> | ||
|  |             <artifactId>vavr</artifactId> | ||
|  |             <version>${vavr.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>one.util</groupId> | ||
|  |             <artifactId>streamex</artifactId> | ||
|  |             <version>${streamex.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.aspectj</groupId> | ||
|  |             <artifactId>aspectjrt</artifactId> | ||
|  |             <version>${asspectj.version}</version> | ||
|  |         </dependency> | ||
|  |         <dependency> | ||
|  |             <groupId>org.aspectj</groupId> | ||
|  |             <artifactId>aspectjweaver</artifactId> | ||
|  |             <version>${asspectj.version}</version> | ||
|  |         </dependency> | ||
|  |     </dependencies> | ||
|  | 
 | ||
|  |     <build> | ||
|  |         <finalName>java-streams</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> | ||
|  | 
 | ||
|  |             <plugin> | ||
|  |                 <groupId>org.apache.maven.plugins</groupId> | ||
|  |                 <artifactId>maven-compiler-plugin</artifactId> | ||
|  |                 <version>3.1</version> | ||
|  |                 <configuration> | ||
|  |                     <source>1.8</source> | ||
|  |                     <target>1.8</target> | ||
|  |                     <compilerArgument>-parameters</compilerArgument> | ||
|  |                 </configuration> | ||
|  |             </plugin> | ||
|  |         </plugins> | ||
|  |     </build> | ||
|  | 
 | ||
|  |     <properties> | ||
|  |         <!-- util --> | ||
|  |         <commons-lang3.version>3.5</commons-lang3.version> | ||
|  |         <lombok.version>1.16.12</lombok.version> | ||
|  |         <vavr.version>0.9.0</vavr.version> | ||
|  |         <protonpack.version>1.13</protonpack.version> | ||
|  |         <streamex.version>0.6.5</streamex.version> | ||
|  |         <joda.version>2.10</joda.version> | ||
|  |         <!-- testing --> | ||
|  |         <assertj.version>3.6.1</assertj.version> | ||
|  |         <asspectj.version>1.8.9</asspectj.version> | ||
|  |     </properties> | ||
|  | </project> |