-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
331 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
|
||
|
||
dependencies { | ||
implementation(libs.kotlin.gradle.plugin) | ||
implementation(libs.android.gradle.plugin) | ||
implementation(libs.dokka.plugin) | ||
implementation(libs.org.jacoco.core) | ||
} | ||
|
||
gradlePlugin { | ||
plugins { | ||
register("publishingConventionPlugin") { | ||
id = "android.maps.compose.PublishingConventionPlugin" | ||
implementationClass = "PublishingConventionPlugin" | ||
} | ||
} | ||
} |
108 changes: 108 additions & 0 deletions
108
build-logic/convention/src/main/kotlin/PublishingConventionPlugin.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
// buildSrc/src/main/kotlin/PublishingConventionPlugin.kt | ||
import org.gradle.api.Plugin | ||
import org.gradle.api.Project | ||
import org.gradle.api.publish.PublishingExtension | ||
import org.gradle.api.publish.maven.MavenPublication | ||
import org.gradle.kotlin.dsl.* | ||
import org.gradle.testing.jacoco.plugins.JacocoPluginExtension | ||
import org.gradle.api.tasks.testing.Test | ||
import org.gradle.testing.jacoco.plugins.JacocoTaskExtension | ||
import org.gradle.plugins.signing.SigningExtension | ||
import org.gradle.api.publish.maven.* | ||
|
||
class PublishingConventionPlugin : Plugin<Project> { | ||
override fun apply(project: Project) { | ||
project.run { | ||
|
||
applyPlugins() | ||
configureJacoco() | ||
configurePublishing() | ||
configureSigning() | ||
} | ||
} | ||
|
||
private fun Project.applyPlugins() { | ||
apply(plugin = "com.android.library") | ||
apply(plugin = "com.mxalbert.gradle.jacoco-android") | ||
apply(plugin = "maven-publish") | ||
apply(plugin = "org.jetbrains.dokka") | ||
apply(plugin = "signing") | ||
} | ||
|
||
private fun Project.configureJacoco() { | ||
configure<JacocoPluginExtension> { | ||
toolVersion = "0.8.7" | ||
|
||
} | ||
|
||
tasks.withType<Test>().configureEach { | ||
extensions.configure(JacocoTaskExtension::class.java) { | ||
isIncludeNoLocationClasses = true | ||
excludes = listOf("jdk.internal.*") | ||
} | ||
} | ||
} | ||
|
||
private fun Project.configurePublishing() { | ||
extensions.configure<com.android.build.gradle.LibraryExtension> { | ||
publishing { | ||
singleVariant("release") { | ||
withSourcesJar() | ||
withJavadocJar() | ||
} | ||
} | ||
} | ||
extensions.configure<PublishingExtension> { | ||
publications { | ||
create<MavenPublication>("aar") { | ||
afterEvaluate { | ||
from(components["release"]) | ||
} | ||
pom { | ||
name.set(project.name) | ||
description.set("Jetpack Compose components for the Maps SDK for Android") | ||
url.set("https://github.com/googlemaps/android-maps-compose") | ||
scm { | ||
connection.set("scm:[email protected]:googlemaps/android-maps-compose.git") | ||
developerConnection.set("scm:[email protected]:googlemaps/android-maps-compose.git") | ||
url.set("https://github.com/googlemaps/android-maps-compose") | ||
} | ||
licenses { | ||
license { | ||
name.set("The Apache Software License, Version 2.0") | ||
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") | ||
distribution.set("repo") | ||
} | ||
} | ||
organization { | ||
name.set("Google Inc") | ||
url.set("http://developers.google.com/maps") | ||
} | ||
developers { | ||
developer { | ||
name.set("Google Inc.") | ||
} | ||
} | ||
} | ||
} | ||
} | ||
repositories { | ||
maven { | ||
val releasesRepoUrl = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/") | ||
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/") | ||
url = if (project.version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl | ||
credentials { | ||
username = project.findProperty("sonatypeToken") as String? | ||
password = project.findProperty("sonatypeTokenPassword") as String? | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
private fun Project.configureSigning() { | ||
configure<SigningExtension> { | ||
sign(extensions.getByType<PublishingExtension>().publications["aar"]) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
dependencyResolutionManagement { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
versionCatalogs { | ||
create("libs") { | ||
from(files("../gradle/libs.versions.toml")) | ||
} | ||
} | ||
} | ||
|
||
rootProject.name = "build-logic" | ||
include(":convention") |
Oops, something went wrong.