MVN

com.google.gwt : gwt-incubator

Maven & Gradle

Jan 06, 2011
28 usages

GWT incubator · The Google Web Toolkit (GWT) Incubator fosters additional widgets and libraries for GWT before they are added to the core toolkit. The project is managed by the GWT engineering team at Google, and is used as a place to share, discuss, and vet future or speculative GWT features. Future releases of GWT may or may not use these features, but you are welcome to pull them from here to use today.

<dependency>
    <groupId>com.google.gwt</groupId>
    <artifactId>gwt-incubator</artifactId>
    <version>2.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 2.0.1

All Versions

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

  • Version Updated
  • gwt-incubator-2.0.1

    Jan 06, 2011
  • gwt-incubator-1.5-Dec_28

    Jan 06, 2009

How to add a dependency to Maven

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

<dependency>
    <groupId>com.google.gwt</groupId>
    <artifactId>gwt-incubator</artifactId>
    <version>2.0.1</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'com.google.gwt:gwt-incubator:2.0.1'

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

implementation("com.google.gwt:gwt-incubator:2.0.1")

How to add a dependency to SBT Scala

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

libraryDependencies += "com.google.gwt" % "gwt-incubator" % "2.0.1"