MVN

com.google.gwt.inject : gin

Maven & Gradle

Sep 24, 2012
196 usages

GIN (GWT INjection) · GIN (GWT INjection) brings automatic dependency injection to Google Web Toolkit client-side code. GIN is built on top of Guice and uses (a subset of) Guice's binding language.

<dependency>
    <groupId>com.google.gwt.inject</groupId>
    <artifactId>gin</artifactId>
    <version>2.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.google.gwt.inject : gin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1.2

All Versions

Choose a version of com.google.gwt.inject : gin to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1.x
gin-2.1.2
gin-2.1.1
gin-2.1.0
2.0.x
gin-2.0.0
1.5.x
gin-1.5.0
1.0
gin-1.0

How to add a dependency to Maven

Add the following com.google.gwt.inject : gin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.google.gwt.inject</groupId>
    <artifactId>gin</artifactId>
    <version>2.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.google.gwt.inject : gin gradle dependency to your build.gradle file:

implementation 'com.google.gwt.inject:gin:2.0.0'

Gradle Kotlin DSL: Add the following com.google.gwt.inject : gin gradle kotlin dependency to your build.gradle.kts file:

implementation("com.google.gwt.inject:gin:2.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.google.gwt.inject : gin sbt scala dependency to your build.sbt file:

libraryDependencies += "com.google.gwt.inject" % "gin" % "2.0.0"

Advertisement