MVN

dev.teapot : teapot

Maven & Gradle

May 28, 2021
2 usages
57 stars

teapot · Inkremental is a small library for creating reactive user interfaces. Originally inspired by React, it suits well as a view layer for MVVM or Redux design patterns. Started as a fork of Java library Anvil, it is fully rewriten in Kotlin, with many improvements pulled in and more to come!

<dependency>
    <groupId>dev.teapot</groupId>
    <artifactId>teapot</artifactId>
    <version>0.10.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of dev.teapot : teapot to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.10.0

All Versions

Choose a version of dev.teapot : teapot to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.10.x
teapot-0.10.0

How to add a dependency to Maven

Add the following dev.teapot : teapot maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>dev.teapot</groupId>
    <artifactId>teapot</artifactId>
    <version>0.10.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following dev.teapot : teapot gradle dependency to your build.gradle file:

implementation 'dev.teapot:teapot:0.10.0'

Gradle Kotlin DSL: Add the following dev.teapot : teapot gradle kotlin dependency to your build.gradle.kts file:

implementation("dev.teapot:teapot:0.10.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following dev.teapot : teapot sbt scala dependency to your build.sbt file:

libraryDependencies += "dev.teapot" % "teapot" % "0.10.0"

Advertisement