MVN

org.sonatype.sisu.inject : guava-bootstrap

Maven & Gradle

Jan 15, 2012
1 usages

Sisu Guava - Bootstrap Classes · ExecutorService's type parameters changed between JDK5 and JDK6 in a way that makes it impossible for our invokeAll/invokeAny methods to match both at compile time. This project builds a JDK6-like copy of ExecutorService (but with JDK5 compiler settings to ensure that it will work with JRE5 at runtime). This project's is then used in the bootstrap class path of Guava proper.

<dependency>
    <groupId>org.sonatype.sisu.inject</groupId>
    <artifactId>guava-bootstrap</artifactId>
    <version>0.11.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.sonatype.sisu.inject : guava-bootstrap to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.11.1

All Versions

Choose a version of org.sonatype.sisu.inject : guava-bootstrap to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.11.x
guava-bootstrap-0.11.1

How to add a dependency to Maven

Add the following org.sonatype.sisu.inject : guava-bootstrap maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.sonatype.sisu.inject</groupId>
    <artifactId>guava-bootstrap</artifactId>
    <version>0.11.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.sonatype.sisu.inject : guava-bootstrap gradle dependency to your build.gradle file:

implementation 'org.sonatype.sisu.inject:guava-bootstrap:0.11.1'

Gradle Kotlin DSL: Add the following org.sonatype.sisu.inject : guava-bootstrap gradle kotlin dependency to your build.gradle.kts file:

implementation("org.sonatype.sisu.inject:guava-bootstrap:0.11.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.sonatype.sisu.inject : guava-bootstrap sbt scala dependency to your build.sbt file:

libraryDependencies += "org.sonatype.sisu.inject" % "guava-bootstrap" % "0.11.1"

Advertisement