Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--suppress HtmlDeprecatedAttribute -->
<div align="center">

![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/it.vercruysse.lemmyapi/lemmy-api?server=https%3A%2F%2Fs01.oss.sonatype.org)
![MavenCentral (Snapshots)](https://img.shields.io/maven-central/v/it.vercruysse.lemmyapi/lemmy-api)
![badge][badge-js]
![badge][badge-jvm]
![badge][badge-android]
Expand Down Expand Up @@ -45,11 +45,6 @@ implementation("it.vercruysse.lemmyapi:lemmy-api:VERSION")
```
It is currently in beta, so only snapshots are available.

Add the following repository
```kts
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") }
```

## Goals

The intention is to provide an easy-to-use API that supports a wide range of Lemmy instances.
Expand Down
5 changes: 2 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import com.vanniktech.maven.publish.SonatypeHost
import org.jmailen.gradle.kotlinter.tasks.FormatTask
import org.jmailen.gradle.kotlinter.tasks.LintTask

Expand All @@ -8,7 +7,7 @@ plugins {
kotlin("plugin.serialization") version "2.1.10"
id("org.jmailen.kotlinter") version "5.0.1"
id("com.google.devtools.ksp") version ("2.1.10-1.0.30")
id("com.vanniktech.maven.publish") version "0.29.0"
id("com.vanniktech.maven.publish") version "0.33.0"
id("com.github.ben-manes.versions") version "0.51.0"
id("com.android.library")
id("kotlin-parcelize")
Expand Down Expand Up @@ -176,7 +175,7 @@ fun getHostOsName(): OS =
}

mavenPublishing {
publishToMavenCentral(SonatypeHost.S01, true)
publishToMavenCentral( true)
signAllPublications()
}

Expand Down
Loading