2023-07-29 13:00:17 +03:00
|
|
|
# Module dataforge-scripting
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
## Artifact:
|
|
|
|
|
2023-11-26 10:05:19 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:dataforge-scripting:0.7.0`.
|
2023-07-29 13:00:17 +03:00
|
|
|
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
2023-11-26 10:05:19 +03:00
|
|
|
//uncomment to access development builds
|
|
|
|
//maven("https://maven.pkg.jetbrains.space/spc/p/sci/dev")
|
2023-07-29 13:00:17 +03:00
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-11-26 10:05:19 +03:00
|
|
|
implementation("space.kscience:dataforge-scripting:0.7.0")
|
2023-07-29 13:00:17 +03:00
|
|
|
}
|
|
|
|
```
|