<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>ru.intodayer</groupid>
<artifactid>test-arraylist</artifactid>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>test-arraylist</name>
<url>http://maven.apache.org</url>
the <properties>
<project.build.sourceencoding>UTF-8</project.build.sourceencoding>
</properties>
<dependencies>
<dependency>
<groupid>junit</groupid>
<artifactid>junit</artifactid>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupid>org.junit.jupiter</groupid>
<artifactid>junit-jupiter-api</artifactid>
<version>5.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
the <properties>
<project.build.sourceencoding>UTF-8</project.build.sourceencoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
Find more questions by tags JavaJUnitApache Maven