visionforge/visionforge-fx/README.md

33 lines
509 B
Markdown
Raw Permalink Normal View History

2022-01-23 15:06:47 +03:00
# Module visionforge-fx
## Usage
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-fx:0.2.0`.
**Gradle Groovy:**
```groovy
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
implementation 'space.kscience:visionforge-fx:0.2.0'
}
```
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
implementation("space.kscience:visionforge-fx:0.2.0")
}
```