2020-01-01 11:38:39 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-03-15 08:52:24 -04:00
|
|
|
<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">
|
2020-01-29 15:15:24 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>core-java-14</artifactId>
|
|
|
|
<name>core-java-14</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<url>http://maven.apache.org</url>
|
2020-01-01 11:38:39 -05:00
|
|
|
|
2020-01-29 15:15:24 -05:00
|
|
|
<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.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit-jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit-jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<release>${maven.compiler.release}</release>
|
|
|
|
<compilerArgs>--enable-preview</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${surefire.plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<argLine>--enable-preview</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-01-01 11:38:39 -05:00
|
|
|
|
2020-01-29 15:15:24 -05:00
|
|
|
<properties>
|
|
|
|
<maven.compiler.release>14</maven.compiler.release>
|
|
|
|
<assertj.version>3.6.1</assertj.version>
|
2020-01-26 09:14:18 -05:00
|
|
|
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
2020-01-15 15:23:26 -05:00
|
|
|
<surefire.plugin.version>3.0.0-M3</surefire.plugin.version>
|
2020-01-29 15:15:24 -05:00
|
|
|
</properties>
|
2020-01-01 11:38:39 -05:00
|
|
|
|
|
|
|
</project>
|