Skip to content

Commit

Permalink
Fix "License" -> "Licence"
Browse files Browse the repository at this point in the history
Minor adjustments to docs
  • Loading branch information
dellisd committed Jun 3, 2021
1 parent 35bab1c commit 5ae3087
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
```
1 change: 1 addition & 0 deletions docs/geojson.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions docs/turf.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 5ae3087

Please sign in to comment.