From 64100dcfe40e12a51cffdea5a518d73a64f6b91d Mon Sep 17 00:00:00 2001 From: Alexander Nozik Date: Wed, 3 Mar 2021 22:41:33 +0300 Subject: [PATCH] readme update --- README.md | 4 +--- docs/templates/ARTIFACT-TEMPLATE.md | 9 +++------ docs/templates/README-TEMPLATE.md | 2 -- settings.gradle.kts | 6 +----- 4 files changed, 5 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 10b32c35..1b559341 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,6 @@ ![Gradle build](https://github.com/mipt-npm/dataforge-core/workflows/Gradle%20build/badge.svg) -[ ![Download](https://api.bintray.com/packages/mipt-npm/dataforge/dataforge-meta/images/download.svg) ](https://bintray.com/mipt-npm/dataforge/dataforge-meta/_latestVersion) -
* ### [dataforge-context](dataforge-context) @@ -49,7 +47,7 @@ > **Maturity**: EXPERIMENTAL
-* ### [dataforge-io-yaml](dataforge-io-yaml) +* ### [dataforge-io-yaml](dataforge-io/dataforge-io-yaml) > YAML meta converters and Front Matter envelope format > > **Maturity**: PROTOTYPE diff --git a/docs/templates/ARTIFACT-TEMPLATE.md b/docs/templates/ARTIFACT-TEMPLATE.md index 410c6cad..6b921b05 100644 --- a/docs/templates/ARTIFACT-TEMPLATE.md +++ b/docs/templates/ARTIFACT-TEMPLATE.md @@ -2,16 +2,14 @@ > > This module artifact: `${group}:${name}:${version}`. > -> Bintray release version: [ ![Download](https://api.bintray.com/packages/mipt-npm/dataforge/${name}/images/download.svg) ](https://bintray.com/mipt-npm/kscience/${name}/_latestVersion) > -> Bintray development version: [ ![Download](https://api.bintray.com/packages/mipt-npm/dev/${name}/images/download.svg) ](https://bintray.com/mipt-npm/dev/${name}/_latestVersion) +> [![Maven Central](https://img.shields.io/maven-central/v/space.kscience/${name}.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22space.kscience%22%20AND%20a:%22${name}%22) > > **Gradle:** > > ```gradle > repositories { -> maven { url 'https://dl.bintray.com/mipt-npm/dataforge' } -> maven { url 'https://dl.bintray.com/mipt-npm/dev' } +> maven { url 'https://repo.kotlin.link' } > } > > dependencies { @@ -22,8 +20,7 @@ > > ```kotlin > repositories { -> maven("https://dl.bintray.com/mipt-npm/kscience") -> maven("https://dl.bintray.com/mipt-npm/dev") +> maven("https://https://repo.kotlin.link") > } > > dependencies { diff --git a/docs/templates/README-TEMPLATE.md b/docs/templates/README-TEMPLATE.md index e0d7bb23..a28f0db3 100644 --- a/docs/templates/README-TEMPLATE.md +++ b/docs/templates/README-TEMPLATE.md @@ -3,6 +3,4 @@ ![Gradle build](https://github.com/mipt-npm/dataforge-core/workflows/Gradle%20build/badge.svg) -[ ![Download](https://api.bintray.com/packages/mipt-npm/dataforge/dataforge-meta/images/download.svg) ](https://bintray.com/mipt-npm/dataforge/dataforge-meta/_latestVersion) - $modules diff --git a/settings.gradle.kts b/settings.gradle.kts index 8746a320..fe8819b5 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -4,13 +4,9 @@ pluginManagement { jcenter() gradlePluginPortal() maven("https://dl.bintray.com/kotlin/kotlin-eap") - maven("https://dl.bintray.com/kotlin/kotlin-dev") - maven("https://dl.bintray.com/mipt-npm/dataforge") - maven("https://dl.bintray.com/mipt-npm/kscience") - maven("https://dl.bintray.com/mipt-npm/dev") } - val toolsVersion = "0.8.3" + val toolsVersion = "0.8.4" val kotlinVersion = "1.4.30" plugins {