Skip to content

Commit

Permalink
release: Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Feb 12, 2022
1 parent b544a3e commit fc070a0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,31 +48,27 @@ Leaflet (the web ui frontend) is licensed under [2-clause BSD License](https://g
squaremap provides simple APIs to draw markers, shapes, icons, and etc. on rendered maps. Javadocs are hosted on the maven repository alongside the binaries, and should be automatically downloaded by your IDE.

### Dependency Information

Releases are published to Maven Central, snapshots are available on the Sonatype snapshots repo: `https://s01.oss.sonatype.org/content/repositories/snapshots/`

Maven
```xml
<repository>
<id>sonatype-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
```
```xml
<dependency>
<groupId>xyz.jpenilla</groupId>
<artifactId>squaremap-api</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.1.0</version>
<scope>provided</scope>
</dependency>
```

Gradle
```kotlin
repositories {
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
mavenCentral()
}
```
```kotlin

dependencies {
compileOnly("xyz.jpenilla", "squaremap-api", "1.1.0-SNAPSHOT")
compileOnly("xyz.jpenilla", "squaremap-api", "1.1.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "xyz.jpenilla"
version = "1.1.0-SNAPSHOT"
version = "1.1.0"
description = "Minimalistic and lightweight world map viewer for Minecraft servers"
}

Expand Down

0 comments on commit fc070a0

Please sign in to comment.