MVN

org.gwtproject.timer : gwt-timer

Maven & Gradle

Oct 02, 2020
8 usages
10 stars

GWT Timer · A simplified, browser-safe timer class. This class serves the same purpose as java.util.Timer, but is simplified because of the single-threaded environment. To schedule a timer, simply create a subclass of it (overriding run) and call schedule or scheduleRepeating.

<dependency>
    <groupId>org.gwtproject.timer</groupId>
    <artifactId>gwt-timer</artifactId>
    <version>1.0.0-RC1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.gwtproject.timer : gwt-timer to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0-RC1
  • Latest Release Candidate: 1.0.0-RC1

All Versions

Choose a version of org.gwtproject.timer : gwt-timer to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
gwt-timer-1.0.0-RC1

How to add a dependency to Maven

Add the following org.gwtproject.timer : gwt-timer maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.gwtproject.timer</groupId>
    <artifactId>gwt-timer</artifactId>
    <version>1.0.0-RC1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.gwtproject.timer : gwt-timer gradle dependency to your build.gradle file:

implementation 'org.gwtproject.timer:gwt-timer:1.0.0-RC1'

Gradle Kotlin DSL: Add the following org.gwtproject.timer : gwt-timer gradle kotlin dependency to your build.gradle.kts file:

implementation("org.gwtproject.timer:gwt-timer:1.0.0-RC1")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.gwtproject.timer : gwt-timer sbt scala dependency to your build.sbt file:

libraryDependencies += "org.gwtproject.timer" % "gwt-timer" % "1.0.0-RC1"

Advertisement