m

maven-plugin-testing

The Maven Plugin Testing contains the necessary modules to be able to test Maven Plugins.
http://maven.apache.org/plugin-testing/
文件下载
文件名 操作
maven-plugin-testing-2.1.pom 下载
Apache Maven
<dependency>
  <groupId>org.apache.maven.plugin-testing</groupId>
  <artifactId>maven-plugin-testing</artifactId>
  <version>2.1</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'org.apache.maven.plugin-testing:maven-plugin-testing:2.1'
Gradle Kotlin
implementation("org.apache.maven.plugin-testing:maven-plugin-testing:2.1")
Scala SBT
libraryDependencies += "org.apache.maven.plugin-testing" % "maven-plugin-testing" % "2.1"
Groovy Grape
@Grapes(
  @Grab(group='org.apache.maven.plugin-testing', module='maven-plugin-testing', version='2.1')
)
Apache Ivy
<dependency org="org.apache.maven.plugin-testing" name="maven-plugin-testing" rev="2.1" />
Leiningen
[org.apache.maven.plugin-testing/maven-plugin-testing "2.1"]
Apache Buildr
'org.apache.maven.plugin-testing:maven-plugin-testing:jar:2.1'