-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from SciProgCentre/dev
0.6.2
- Loading branch information
Showing
25 changed files
with
339 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
name: Dokka publication | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
release: | ||
types: [ created ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 40 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: DeLaGuardo/setup-graalvm@4.0 | ||
- uses: actions/checkout@v3.0.0 | ||
- uses: actions/setup-java@v3.0.0 | ||
with: | ||
graalvm: 21.2.0 | ||
java: java11 | ||
arch: amd64 | ||
- uses: actions/cache@v2 | ||
java-version: 11 | ||
distribution: liberica | ||
- name: Cache konan | ||
uses: actions/cache@v3.0.1 | ||
with: | ||
path: ~/.gradle/caches | ||
path: ~/.konan | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('*.gradle.kts') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- run: ./gradlew dokkaHtmlMultiModule --build-cache --no-daemon --no-parallel --stacktrace | ||
- uses: JamesIves/github-pages-deploy-action@4.1.0 | ||
- uses: gradle/gradle-build-action@v2.1.5 | ||
with: | ||
arguments: dokkaHtmlMultiModule --no-parallel | ||
- uses: JamesIves/github-pages-deploy-action@v4.3.0 | ||
with: | ||
branch: gh-pages | ||
folder: build/dokka/htmlMultiModule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ plugins { | |
|
||
allprojects { | ||
group = "space.kscience" | ||
version = "0.6.1" | ||
version = "0.6.2" | ||
} | ||
|
||
subprojects { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Module dataforge-context | ||
|
||
Context and provider definitions | ||
|
||
## Usage | ||
|
||
## Artifact: | ||
|
||
The Maven coordinates of this project are `space.kscience:dataforge-context:0.6.2-dev-2`. | ||
|
||
**Gradle Groovy:** | ||
```groovy | ||
repositories { | ||
maven { url 'https://repo.kotlin.link' } | ||
mavenCentral() | ||
} | ||
dependencies { | ||
implementation 'space.kscience:dataforge-context:0.6.2-dev-2' | ||
} | ||
``` | ||
**Gradle Kotlin DSL:** | ||
```kotlin | ||
repositories { | ||
maven("https://repo.kotlin.link") | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("space.kscience:dataforge-context:0.6.2-dev-2") | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Module dataforge-data | ||
|
||
|
||
|
||
## Usage | ||
|
||
## Artifact: | ||
|
||
The Maven coordinates of this project are `space.kscience:dataforge-data:0.6.2-dev-2`. | ||
|
||
**Gradle Groovy:** | ||
```groovy | ||
repositories { | ||
maven { url 'https://repo.kotlin.link' } | ||
mavenCentral() | ||
} | ||
dependencies { | ||
implementation 'space.kscience:dataforge-data:0.6.2-dev-2' | ||
} | ||
``` | ||
**Gradle Kotlin DSL:** | ||
```kotlin | ||
repositories { | ||
maven("https://repo.kotlin.link") | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("space.kscience:dataforge-data:0.6.2-dev-2") | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Module dataforge-io | ||
|
||
IO module | ||
|
||
## Usage | ||
|
||
## Artifact: | ||
|
||
The Maven coordinates of this project are `space.kscience:dataforge-io:0.6.2-dev-2`. | ||
|
||
**Gradle Groovy:** | ||
```groovy | ||
repositories { | ||
maven { url 'https://repo.kotlin.link' } | ||
mavenCentral() | ||
} | ||
dependencies { | ||
implementation 'space.kscience:dataforge-io:0.6.2-dev-2' | ||
} | ||
``` | ||
**Gradle Kotlin DSL:** | ||
```kotlin | ||
repositories { | ||
maven("https://repo.kotlin.link") | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("space.kscience:dataforge-io:0.6.2-dev-2") | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Module dataforge-io-yaml | ||
|
||
YAML meta IO | ||
|
||
## Usage | ||
|
||
## Artifact: | ||
|
||
The Maven coordinates of this project are `space.kscience:dataforge-io-yaml:0.6.2-dev-2`. | ||
|
||
**Gradle Groovy:** | ||
```groovy | ||
repositories { | ||
maven { url 'https://repo.kotlin.link' } | ||
mavenCentral() | ||
} | ||
dependencies { | ||
implementation 'space.kscience:dataforge-io-yaml:0.6.2-dev-2' | ||
} | ||
``` | ||
**Gradle Kotlin DSL:** | ||
```kotlin | ||
repositories { | ||
maven("https://repo.kotlin.link") | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("space.kscience:dataforge-io-yaml:0.6.2-dev-2") | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.