MVN

maven : maven-test-plugin

Maven & Gradle

May 23, 2007

Maven Test Plug-in · Run JUnit tests.

<dependency>
    <groupId>maven</groupId>
    <artifactId>maven-test-plugin</artifactId>
    <version>1.8.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of maven : maven-test-plugin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.8.2

All Versions

Choose a version of maven : maven-test-plugin to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.8.x
maven-test-plugin-1.8.2
maven-test-plugin-1.8.1
1.8
maven-test-plugin-1.8
1.7
maven-test-plugin-1.7
1.6.x
maven-test-plugin-1.6.2
maven-test-plugin-1.6.1
1.6
maven-test-plugin-1.6
1.5
maven-test-plugin-1.5
1.0
maven-test-plugin-1.0

How to add a dependency to Maven

Add the following maven : maven-test-plugin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>maven</groupId>
    <artifactId>maven-test-plugin</artifactId>
    <version>1.8.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following maven : maven-test-plugin gradle dependency to your build.gradle file:

implementation 'maven:maven-test-plugin:1.8.2'

Gradle Kotlin DSL: Add the following maven : maven-test-plugin gradle kotlin dependency to your build.gradle.kts file:

implementation("maven:maven-test-plugin:1.8.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following maven : maven-test-plugin sbt scala dependency to your build.sbt file:

libraryDependencies += "maven" % "maven-test-plugin" % "1.8.2"