71 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.5 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-streams</artifactId>
 | |
|     <name>core-java-streams</name>
 | |
|     <packaging>jar</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung.core-java-modules</groupId>
 | |
|         <artifactId>core-java-modules</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <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>com.pivovarit</groupId>
 | |
|             <artifactId>throwing-function</artifactId>
 | |
|             <version>${throwing-function.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <finalName>core-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-compiler-plugin</artifactId>
 | |
|                 <version>${maven-compiler-plugin.version}</version>
 | |
|                 <configuration>
 | |
|                     <source>${maven.compiler.source}</source>
 | |
|                     <target>${maven.compiler.target}</target>
 | |
|                     <compilerArgument>-parameters</compilerArgument>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <vavr.version>0.10.4</vavr.version>
 | |
|         <protonpack.version>1.16</protonpack.version>
 | |
|         <streamex.version>0.8.1</streamex.version>
 | |
|         <throwing-function.version>1.5.1</throwing-function.version>
 | |
| 
 | |
|         <maven.compiler.source>17</maven.compiler.source>
 | |
|         <maven.compiler.target>17</maven.compiler.target>
 | |
|     </properties>
 | |
| 
 | |
| </project> |