61 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
		
		
			
		
	
	
			61 lines
		
	
	
		
			2.1 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>
							 | 
						||
| 
								 | 
							
								    <artifactId>core-java-9-new-features</artifactId>
							 | 
						||
| 
								 | 
							
								    <version>0.2-SNAPSHOT</version>
							 | 
						||
| 
								 | 
							
								    <name>core-java-9</name>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <parent>
							 | 
						||
| 
								 | 
							
								        <groupId>com.baeldung</groupId>
							 | 
						||
| 
								 | 
							
								        <artifactId>parent-modules</artifactId>
							 | 
						||
| 
								 | 
							
								        <version>1.0.0-SNAPSHOT</version>
							 | 
						||
| 
								 | 
							
								        <relativePath>../../</relativePath>
							 | 
						||
| 
								 | 
							
								    </parent>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <dependencies>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.assertj</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>assertj-core</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${assertj.version}</version>
							 | 
						||
| 
								 | 
							
								            <scope>test</scope>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								        <dependency>
							 | 
						||
| 
								 | 
							
								            <groupId>org.junit.platform</groupId>
							 | 
						||
| 
								 | 
							
								            <artifactId>junit-platform-runner</artifactId>
							 | 
						||
| 
								 | 
							
								            <version>${junit.platform.version}</version>
							 | 
						||
| 
								 | 
							
								            <scope>test</scope>
							 | 
						||
| 
								 | 
							
								        </dependency>
							 | 
						||
| 
								 | 
							
								    </dependencies>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <build>
							 | 
						||
| 
								 | 
							
								        <finalName>core-java-9-new-features</finalName>
							 | 
						||
| 
								 | 
							
								        <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>
							 | 
						||
| 
								 | 
							
								                </configuration>
							 | 
						||
| 
								 | 
							
								            </plugin>
							 | 
						||
| 
								 | 
							
								        </plugins>
							 | 
						||
| 
								 | 
							
								    </build>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <pluginRepositories>
							 | 
						||
| 
								 | 
							
								        <pluginRepository>
							 | 
						||
| 
								 | 
							
								            <id>apache.snapshots</id>
							 | 
						||
| 
								 | 
							
								            <url>http://repository.apache.org/snapshots/</url>
							 | 
						||
| 
								 | 
							
								        </pluginRepository>
							 | 
						||
| 
								 | 
							
								    </pluginRepositories>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    <properties>
							 | 
						||
| 
								 | 
							
								        <!-- testing -->
							 | 
						||
| 
								 | 
							
								        <assertj.version>3.10.0</assertj.version>
							 | 
						||
| 
								 | 
							
								        <junit.platform.version>1.2.0</junit.platform.version>
							 | 
						||
| 
								 | 
							
								        <maven.compiler.source>1.9</maven.compiler.source>
							 | 
						||
| 
								 | 
							
								        <maven.compiler.target>1.9</maven.compiler.target>
							 | 
						||
| 
								 | 
							
								    </properties>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								</project>
							 |