Alexander Hartung
3 years ago
2 changed files with 26 additions and 115 deletions
-
2.classpath
-
135pom.xml
@ -1,114 +1,25 @@ |
|||||
<?xml version="1.0"?> |
|
||||
|
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"> |
|
||||
|
|
||||
<modelVersion>4.0.0</modelVersion> |
|
||||
|
|
||||
<groupId>Arcade64</groupId> |
|
||||
|
|
||||
<artifactId>Arcade64</artifactId> |
|
||||
|
|
||||
<version>1.0-SNAPSHOT</version> |
|
||||
|
|
||||
<packaging>jar</packaging> |
|
||||
|
|
||||
|
|
||||
<properties> |
|
||||
|
|
||||
<maven.compiler.target>11</maven.compiler.target> |
|
||||
|
|
||||
<maven.compiler.source>11</maven.compiler.source> |
|
||||
|
|
||||
<junit.jupiter.version>5.8.1</junit.jupiter.version> |
|
||||
|
|
||||
<junit.platform.version>1.8.1</junit.platform.version> |
|
||||
|
|
||||
</properties> |
|
||||
|
|
||||
|
|
||||
<dependencies> |
|
||||
|
|
||||
|
|
||||
<dependency> |
|
||||
|
|
||||
<groupId>org.junit.jupiter</groupId> |
|
||||
|
|
||||
<artifactId>junit-jupiter-api</artifactId> |
|
||||
|
|
||||
<version>${junit.jupiter.version}</version> |
|
||||
|
|
||||
<scope>test</scope> |
|
||||
|
|
||||
</dependency> |
|
||||
|
|
||||
|
|
||||
<dependency> |
|
||||
|
|
||||
<groupId>org.junit.jupiter</groupId> |
|
||||
|
|
||||
<artifactId>junit-jupiter-params</artifactId> |
|
||||
|
|
||||
<version>${junit.jupiter.version}</version> |
|
||||
|
|
||||
<scope>test</scope> |
|
||||
|
|
||||
</dependency> |
|
||||
|
|
||||
</dependencies> |
|
||||
|
|
||||
|
|
||||
<build> |
|
||||
|
|
||||
|
|
||||
<plugins> |
|
||||
|
|
||||
|
|
||||
<plugin> |
|
||||
|
|
||||
<groupId>org.apache.maven.plugins</groupId> |
|
||||
|
|
||||
<artifactId>maven-surefire-plugin</artifactId> |
|
||||
|
|
||||
<version>2.19.1</version> |
|
||||
|
|
||||
<!-- Specific due to memory leak in 2.20 --> |
|
||||
|
|
||||
|
|
||||
<dependencies> |
|
||||
|
|
||||
<!--Custom provider and engine for Junit 5 to surefire --> |
|
||||
|
|
||||
|
|
||||
<dependency> |
|
||||
|
|
||||
<groupId>org.junit.platform</groupId> |
|
||||
|
|
||||
<artifactId>junit-platform-surefire-provider</artifactId> |
|
||||
|
|
||||
<version>1.0.1</version> |
|
||||
|
|
||||
</dependency> |
|
||||
|
|
||||
|
|
||||
<dependency> |
|
||||
|
|
||||
<groupId>org.junit.jupiter</groupId> |
|
||||
|
|
||||
<artifactId>junit-jupiter-engine</artifactId> |
|
||||
|
|
||||
<version>${junit.jupiter.version}</version> |
|
||||
|
|
||||
</dependency> |
|
||||
|
|
||||
</dependencies> |
|
||||
|
|
||||
<!-- <configuration><argLine>${argLine}</argLine></configuration> --> |
|
||||
|
|
||||
|
|
||||
</plugin> |
|
||||
|
|
||||
</plugins> |
|
||||
|
|
||||
</build> |
|
||||
|
<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.javatpoint.application1</groupId> |
||||
|
<artifactId>my-application1</artifactId> |
||||
|
<version>1.0</version> |
||||
|
<packaging>jar</packaging> |
||||
|
|
||||
|
<name>Maven Quick Start Archetype</name> |
||||
|
<url>http://maven.apache.org</url> |
||||
|
|
||||
|
<dependencies> |
||||
|
<dependency> |
||||
|
<groupId>junit</groupId> |
||||
|
<artifactId>junit</artifactId> |
||||
|
<version>4.8.2</version> |
||||
|
<scope>test</scope> |
||||
|
</dependency> |
||||
|
</dependencies> |
||||
|
|
||||
</project> |
</project> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue