chore: Apply maven-publish plugin consistently (#4364)

This commit is contained in:
James Rich 2026-01-29 14:10:58 -06:00 committed by GitHub
parent 15760da074
commit 07639900c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 1 deletions

View file

@ -34,6 +34,7 @@ class AndroidLibraryConventionPlugin : Plugin<Project> {
apply(plugin = "meshtastic.spotless")
apply(plugin = "meshtastic.dokka")
apply(plugin = "meshtastic.kover")
apply(plugin = "maven-publish")
extensions.configure<LibraryExtension> {
configureKotlinAndroid(this)

View file

@ -32,6 +32,7 @@ class KmpLibraryConventionPlugin : Plugin<Project> {
apply(plugin = "meshtastic.spotless")
apply(plugin = "meshtastic.dokka")
apply(plugin = "meshtastic.kover")
apply(plugin = "maven-publish")
configureKotlinMultiplatform()
}

View file

@ -1,5 +1,7 @@
import java.util.Properties
import java.io.FileInputStream
import java.util.Properties
project.pluginManager.apply("maven-publish")
val configProperties = Properties()
val configFile = rootProject.file("config.properties")