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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ dependencies {
}
```

### Gradle Setup with Sonartype [snapshot]
### Gradle Setup with Maven Central [snapshot]

Currently only from Sonartype snapshot staging is provided
Currently only from Maven Central snapshot staging is provided
```gradle
repositories {
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://central.sonatype.com/api/v1/publisher/deployments/download/' }
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion chartLib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id("com.android.library")
id("maven-publish")
id("kotlin-android")
id("com.vanniktech.maven.publish") version "0.34.0"
id("com.vanniktech.maven.publish") version "0.36.0"
}

android {
Expand Down
5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ android.enableJetifier=false
android.useAndroidX=true
org.gradle.jvmargs=-Xmx4092M

#SONATYPE_HOST=DEFAULT
# or when publishing to https://s01.oss.sonatype.org
SONATYPE_HOST=S01
# OSSRH was shut down on June 30, 2025. Using CENTRAL_PORTAL instead.
SONATYPE_HOST=CENTRAL_PORTAL
RELEASE_SIGNING_ENABLED=true
POM_ARTIFACT_ID=chart
android.nonTransitiveRClass=false
Expand Down
Loading