MVN

turbine : maven-turbine-plugin

Maven & Gradle

Oct 03, 2005

Maven Environment for Turbine Applications Plugin · The Maven Environment for Turbine Applications (M.E.T.A.) is a replacement for the Turbine Development Kit. It is based on Maven and contains a well defined setup for starting new Turbine applications.

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

Latest Version

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

  • Latest Stable: 1.3
  • Latest Release Candidate: 1.2-rc1

All Versions

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

Version Vulnerabilities Updated
20040825.214656
maven-turbine-plugin-20040825.214656
20040825.211642
maven-turbine-plugin-20040825.211642
1.3
maven-turbine-plugin-1.3
1.2
maven-turbine-plugin-1.2
maven-turbine-plugin-1.2-rc1

How to add a dependency to Maven

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

<dependency>
    <groupId>turbine</groupId>
    <artifactId>maven-turbine-plugin</artifactId>
    <version>1.3</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'turbine:maven-turbine-plugin:1.3'

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

implementation("turbine:maven-turbine-plugin:1.3")

How to add a dependency to SBT Scala

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

libraryDependencies += "turbine" % "maven-turbine-plugin" % "1.3"