MVN

com.cloudbees.sdk : bees-boot2-assembly

Maven & Gradle

Oct 10, 2013
1 usages

CloudBees SDK 2nd stage bootloader packaging · This module creates two things: (1) a text file that contains a list of GAV coordinates needed for the 2nd stage boot loader (2) jar files mentioned above, in the Maven repository directory layout. Using Maven repository directory layout, as opposed to more simpler "flat directory with full of jars", allow us to share the jar files between fallback bees-driver dependencies and boot2, which saves disk space a lot. We do this in a separate module outside boot2, so that the list includes the bees-boot2 jar itself.

<dependency>
    <groupId>com.cloudbees.sdk</groupId>
    <artifactId>bees-boot2-assembly</artifactId>
    <version>1.5.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.cloudbees.sdk : bees-boot2-assembly to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.5.2

All Versions

Choose a version of com.cloudbees.sdk : bees-boot2-assembly to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.5.x
bees-boot2-assembly-1.5.2
bees-boot2-assembly-1.5.1
bees-boot2-assembly-1.5.0

How to add a dependency to Maven

Add the following com.cloudbees.sdk : bees-boot2-assembly maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.cloudbees.sdk</groupId>
    <artifactId>bees-boot2-assembly</artifactId>
    <version>1.5.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.cloudbees.sdk : bees-boot2-assembly gradle dependency to your build.gradle file:

implementation 'com.cloudbees.sdk:bees-boot2-assembly:1.5.2'

Gradle Kotlin DSL: Add the following com.cloudbees.sdk : bees-boot2-assembly gradle kotlin dependency to your build.gradle.kts file:

implementation("com.cloudbees.sdk:bees-boot2-assembly:1.5.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.cloudbees.sdk : bees-boot2-assembly sbt scala dependency to your build.sbt file:

libraryDependencies += "com.cloudbees.sdk" % "bees-boot2-assembly" % "1.5.2"