dataforge-core/dataforge-meta/README.md

24 lines
472 B
Markdown
Raw Normal View History

2023-07-29 13:00:17 +03:00
# Module dataforge-meta
Meta definition and basic operations on meta
## Usage
## Artifact:
2023-11-26 10:05:19 +03:00
The Maven coordinates of this project are `space.kscience:dataforge-meta: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-meta:0.7.0")
2023-07-29 13:00:17 +03:00
}
```