From 5ae3087a2783294f1837fd2f627e6da5c652067f Mon Sep 17 00:00:00 2001 From: Derek Date: Thu, 3 Jun 2021 00:35:45 -0400 Subject: [PATCH] Fix "License" -> "Licence" Minor adjustments to docs --- README.md | 18 ++++++++---------- docs/geojson.md | 1 + docs/turf.md | 1 + gradle.properties | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 37cb8a64..2ecaf7f1 100644 --- a/README.md +++ b/README.md @@ -4,27 +4,25 @@ Spatial K is a set of libraries for working with geospatial data in Kotlin inlcu a port of Turfjs written in pure Kotlin. It supports Kotlin Multiplatform and Java projects while also featuring a Kotlin DSL for building GeoJson objects. +See the [project site](https://dellisd.github.io/spatial-k) form more info. + ## Installation #### Java and Kotlin/JVM -```groovy +```kotlin dependencies { - implementation "io.github.dellisd.spatialk:geojson:0.1.0" - implementation "io.github.dellisd.spatialk:turf:0.1.0" - - // Kotlin only - implementation "io.github.dellisd.spatialk:geojson-dsl:0.1.0" + implementation("io.github.dellisd.spatialk:geojson:0.1.1") + implementation("io.github.dellisd.spatialk:turf:0.1.1") } ``` #### Kotlin Multiplatform -```groovy +```kotlin commonMain { dependencies { - implementation "io.github.dellisd.spatialk:geojson:0.1.0" - implementation "io.github.dellisd.spatialk:turf:0.1.0" - implementation "io.github.dellisd.spatialk:geojson-dsl:0.1.0" + implementation("io.github.dellisd.spatialk:geojson:0.1.1") + implementation("io.github.dellisd.spatialk:turf:0.1.1") } } ``` \ No newline at end of file diff --git a/docs/geojson.md b/docs/geojson.md index 4299e2c4..4d999601 100644 --- a/docs/geojson.md +++ b/docs/geojson.md @@ -6,6 +6,7 @@ See below for constructing GeoJson objects using the DSL. ## Installation +![Maven Central](https://img.shields.io/maven-central/v/io.github.dellisd.spatialk/geojson) ![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/io.github.dellisd.spatialk/geojson?server=https%3A%2F%2Foss.sonatype.org) === "Kotlin" diff --git a/docs/turf.md b/docs/turf.md index 1a300fb9..1339f5a5 100644 --- a/docs/turf.md +++ b/docs/turf.md @@ -8,6 +8,7 @@ The documentation for the ported functions can be found in the [API docs](api/tu ## Installation +![Maven Central](https://img.shields.io/maven-central/v/io.github.dellisd.spatialk/turf) ![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/io.github.dellisd.spatialk/turf?server=https%3A%2F%2Foss.sonatype.org) === "Kotlin" diff --git a/gradle.properties b/gradle.properties index e94307bd..84f7e203 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,16 +1,16 @@ kotlin.code.style=official GROUP=io.github.dellisd.spatialk -VERSION_NAME=0.1.0 +VERSION_NAME=0.1.1 POM_URL=https://github.com/dellisd/spatial-k POM_SCM_URL=https://github.com/dellisd/spatial-k POM_SCM_CONNECTION=scm:git:git://github.com/dellisd/spatial-k.git POM_SCM_DEV_CONNECTION=scm:git:git://github.com/dellisd/spatial-k.git -POM_LICENSE_NAME=MIT License -POM_LICENSE_URL=https://opensource.org/licenses/MIT -POM_LICENSE_DIST=repo +POM_LICENCE_NAME=MIT License +POM_LICENCE_URL=https://opensource.org/licenses/MIT +POM_LICENCE_DIST=repo POM_DEVELOPER_ID=dellisd POM_DEVELOPER_NAME=Derek Ellis