From c5fe97adf0f47b85052410e35f05fb50eae25439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adriel=20Caf=C3=A9?= Date: Mon, 17 Apr 2023 16:43:00 -0300 Subject: [PATCH] chore: enable auto release --- build.gradle | 12 +----------- gradle.properties | 5 ++++- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/build.gradle b/build.gradle index 311719f..df1d592 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { repositories { - google() mavenCentral() + google() gradlePluginPortal() maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" } } @@ -12,14 +12,4 @@ buildscript { subprojects { apply plugin: 'org.jlleitschuh.gradle.ktlint' - plugins.withId("com.vanniktech.maven.publish") { - mavenPublish { - sonatypeHost = "S01" - } - } - repositories { - google() - mavenCentral() - maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" } - } } diff --git a/gradle.properties b/gradle.properties index 2be28fa..fe47c0a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -28,8 +28,11 @@ org.jetbrains.compose.experimental.jscanvas.enabled=true kotlin.mpp.androidSourceSetLayoutVersion=2 # Maven +SONATYPE_HOST=S01 +SONATYPE_AUTOMATIC_RELEASE=true +RELEASE_SIGNING_ENABLED=true + GROUP=cafe.adriel.lyricist -VERSION_NAME=1.3.0-SNAPSHOT POM_DESCRIPTION=The missing I18N/L10N library for Jetpack Compose! POM_INCEPTION_YEAR=2021