MVN

au.net.ocean.maven.plugin : maven-plugin-tools

Maven & Gradle

Aug 01, 2011
1 usages

Ocean Maven Plugin Tools · Maven Plugin Tools are a library of utility classes to aid in the development and testing of plugins for Maven 2. Key features include support for Java 5 annotation based descriptor generation via an annotation extractor, and support for easier unit testing using the same Java 5 annotations and runtime dynamic proxies for parameter injection.

<dependency>
    <groupId>au.net.ocean.maven.plugin</groupId>
    <artifactId>maven-plugin-tools</artifactId>
    <version>1.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of au.net.ocean.maven.plugin : maven-plugin-tools to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2

All Versions

Choose a version of au.net.ocean.maven.plugin : maven-plugin-tools to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2
maven-plugin-tools-1.2
1.1
maven-plugin-tools-1.1
1.0
maven-plugin-tools-1.0

How to add a dependency to Maven

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

<dependency>
    <groupId>au.net.ocean.maven.plugin</groupId>
    <artifactId>maven-plugin-tools</artifactId>
    <version>1.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following au.net.ocean.maven.plugin : maven-plugin-tools gradle dependency to your build.gradle file:

implementation 'au.net.ocean.maven.plugin:maven-plugin-tools:1.2'

Gradle Kotlin DSL: Add the following au.net.ocean.maven.plugin : maven-plugin-tools gradle kotlin dependency to your build.gradle.kts file:

implementation("au.net.ocean.maven.plugin:maven-plugin-tools:1.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following au.net.ocean.maven.plugin : maven-plugin-tools sbt scala dependency to your build.sbt file:

libraryDependencies += "au.net.ocean.maven.plugin" % "maven-plugin-tools" % "1.2"