Skip to content

globaltcad/sprouts

Repository files navigation

Sprouts - The Swing-Tree MVVM Property API License: MIT Java Version

Null-safe, functional and event based properties.


Getting started with Apache Maven

<dependency>
  <groupId>io.github.globaltcad</groupId>
  <artifactId>sprouts</artifactId>
  <version>2.0.0-M13</version>
</dependency>

Getting started with Gradle

Groovy DSL:

implementation 'io.github.globaltcad:sprouts:2.0.0-M13'

Kotlin DSL:

implementation("io.github.globaltcad:sprouts:2.0.0-M13")

Getting started with

1. Add the JitPack url in your root build.gradle at the end of repositories

allprojects {
	repositories {
		//...
		maven { url 'https://jitpack.io' }
	}
}

2. Add sprouts as dependency

...either by specifiying the version tag:

dependencies {
	implementation 'com.github.globaltcad:sprouts:2.0.0-M13'
}

...or by using a custom commit hash instead:

dependencies {
	implementation 'com.github.globaltcad:sprouts:5c4566d'//Any commit hash...
}