83 lines
2.8 KiB
XML
83 lines
2.8 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>
|
||
|
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>junit5</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<name>junit5</name>
|
||
|
<description>Intro to JUnit 5</description>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<java.version>1.8</java.version>
|
||
|
<!-- Due to a bug in surefire-junit5-5.0.0-ALPHA we use the latest snapshot instead -->
|
||
|
<junit.gen5.version>5.0.0-SNAPSHOT</junit.gen5.version>
|
||
|
</properties>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>snapshots-repo</id>
|
||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||
|
<releases>
|
||
|
<enabled>false</enabled>
|
||
|
</releases>
|
||
|
<snapshots>
|
||
|
<!-- Do NOT cache JUnit 5 snapshot JARs. -->
|
||
|
<updatePolicy>always</updatePolicy>
|
||
|
<enabled>true</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<pluginRepositories>
|
||
|
<pluginRepository>
|
||
|
<id>snapshots-repo</id>
|
||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||
|
<releases>
|
||
|
<enabled>false</enabled>
|
||
|
</releases>
|
||
|
<snapshots>
|
||
|
<!-- Do NOT cache JUnit 5 snapshot JARs. -->
|
||
|
<updatePolicy>always</updatePolicy>
|
||
|
<enabled>true</enabled>
|
||
|
</snapshots>
|
||
|
</pluginRepository>
|
||
|
</pluginRepositories>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.1</version>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.19</version>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.junit</groupId>
|
||
|
<artifactId>surefire-junit5</artifactId>
|
||
|
<version>${junit.gen5.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.junit</groupId>
|
||
|
<artifactId>junit5-api</artifactId>
|
||
|
<version>${junit.gen5.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|