41 lines
650 B
Markdown
41 lines
650 B
Markdown
|
# Trajectory-kt
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
## Artifact:
|
||
|
|
||
|
The Maven coordinates of this project are `space.kscience:trajectory-kt:0.2.2-dev-10`.
|
||
|
|
||
|
**Gradle Groovy:**
|
||
|
```groovy
|
||
|
repositories {
|
||
|
maven { url 'https://repo.kotlin.link' }
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'space.kscience:trajectory-kt:0.2.2-dev-10'
|
||
|
}
|
||
|
```
|
||
|
**Gradle Kotlin DSL:**
|
||
|
```kotlin
|
||
|
repositories {
|
||
|
maven("https://repo.kotlin.link")
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("space.kscience:trajectory-kt:0.2.2-dev-10")
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Authors
|
||
|
|
||
|
### Erik Schouten
|
||
|
https://github.com/ESchouten
|
||
|
|
||
|
Email: erik-schouten@hotmail.nl
|
||
|
|
||
|
### Artem Degtyarev
|
||
|
https://github.com/artdegt
|