fix publishing?

This commit is contained in:
2025-06-30 20:28:52 +06:00
parent 7a2d070ee3
commit 6840598e04
2 changed files with 8 additions and 9 deletions

View File

@@ -23,6 +23,13 @@ plugins {
alias(libs.plugins.nmcp.aggregation)
}
apply plugin: "com.android.library"
apply from: "defaultAndroidSettings.gradle"
apply from: "github_release.gradle"
apply from: "publish.gradle"
apply from: "dokka.gradle"
if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != null) && (project.hasProperty('SONATYPE_PASSWORD') || System.getenv('SONATYPE_PASSWORD') != null)) {
nmcpAggregation {
@@ -37,8 +44,6 @@ if ((project.hasProperty('SONATYPE_USER') || System.getenv('SONATYPE_USER') != n
}
}
apply plugin: "com.android.library"
project.version = "$version"
project.group = "$group"
@@ -102,9 +107,3 @@ java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
apply from: "defaultAndroidSettings.gradle"
apply from: "github_release.gradle"
apply from: "publish.gradle"
apply from: "dokka.gradle"