2018-08-01 15:40:43 +05:30
|
|
|
<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>junit-abstract</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>abstractclasses</name>
|
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
<relativePath>../../</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<powermock.version>1.7.4</powermock.version>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<junit.jupiter.version>5.1.0</junit.jupiter.version>
|
|
|
|
|
<junit.platform.version>1.1.0</junit.platform.version>
|
|
|
|
|
<junit.vintage.version>5.2.0</junit.vintage.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
|
<artifactId>powermock-module-junit4</artifactId>
|
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.powermock</groupId>
|
|
|
|
|
<artifactId>powermock-api-mockito2</artifactId>
|
|
|
|
|
<version>${powermock.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.22.0</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<finalName>junit-abstract</finalName>
|
|
|
|
|
</build>
|
2018-07-21 20:34:52 +05:30
|
|
|
|
|
|
|
|
</project>
|
2018-08-01 15:40:43 +05:30
|
|
|
|
|
|
|
|
|