globaltcad / sprouts

A property MVVM API for the Swing-Tree library
MIT License
1 stars 0 forks source link

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-M9</version>
</dependency>

Getting started with Gradle

Groovy DSL:

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

Kotlin DSL:

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

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-M9'
}

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

dependencies {
    implementation 'com.github.globaltcad:sprouts:9149c47'//Any commit hash...
}