67 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			67 lines
		
	
	
		
			2.3 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-maps</artifactId>
							 | 
						||
| 
								 | 
							
								    <name>core-java-streams-maps</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>log4j</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>log4j</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${log4j.version}</version>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.junit</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>junit-bom</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${junit-jupiter.version}</version>
							 | 
						||
| 
								 | 
							
								            <type>pom</type>
							 | 
						||
| 
								 | 
							
								            <scope>import</scope>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.assertj</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>assertj-core</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>3.23.1</version>
							 | 
						||
| 
								 | 
							
								            <scope>test</scope>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								    </dependencies>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <build>
							 | 
						||
| 
								 | 
							
								        <finalName>core-java-streams-maps</finalName>
							 | 
						||
| 
								 | 
							
								        <resources>
							 | 
						||
| 
								 | 
							
								            <resource>
							 | 
						||
| 
								 | 
							
								                <directory>src/main</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>
							 | 
						||
| 
								 | 
							
								        <!-- testing -->
							 | 
						||
| 
								 | 
							
								        <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
							 | 
						||
| 
								 | 
							
								        <maven.compiler.source>1.8</maven.compiler.source>
							 | 
						||
| 
								 | 
							
								        <maven.compiler.target>1.8</maven.compiler.target>
							 | 
						||
| 
								 | 
							
								    </properties>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								</project>
							 |