MVN

io.cucumber : staging

Maven & Gradle

Dec 11, 2017

Nexus Staging · When using local staging the deployment is deferred to the last module. Because half the project consists of examples that should not be deployed and thus skip the execution of the nexus staging plugin this causes the whole whole project to skip deployment. By being the last module in the build we can ensure that the nexus plugin is triggered uploads all artifacts at the end of the build.

<dependency>
    <groupId>io.cucumber</groupId>
    <artifactId>staging</artifactId>
    <version>2.3.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.cucumber : staging to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.3.0

All Versions

Choose a version of io.cucumber : staging to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.3.x
staging-2.3.0

How to add a dependency to Maven

Add the following io.cucumber : staging maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.cucumber</groupId>
    <artifactId>staging</artifactId>
    <version>2.3.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.cucumber : staging gradle dependency to your build.gradle file:

implementation 'io.cucumber:staging:2.3.0'

Gradle Kotlin DSL: Add the following io.cucumber : staging gradle kotlin dependency to your build.gradle.kts file:

implementation("io.cucumber:staging:2.3.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.cucumber : staging sbt scala dependency to your build.sbt file:

libraryDependencies += "io.cucumber" % "staging" % "2.3.0"

Advertisement