-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Collect BOM constraints automatically (#1269)
* Collect BOM constraints automatically Closes: #1121 * Publish assetfilesystem
- Loading branch information
1 parent
80097ad
commit edb5af2
Showing
3 changed files
with
58 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import java.util.Locale | ||
import org.gradle.api.Project | ||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler | ||
import org.gradle.kotlin.dsl.getByType | ||
import org.gradle.kotlin.dsl.withType | ||
import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension | ||
import org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper | ||
import org.jetbrains.kotlin.gradle.plugin.KotlinJsPluginWrapper | ||
import org.jetbrains.kotlin.gradle.plugin.KotlinMultiplatformPluginWrapper | ||
import org.jetbrains.kotlin.gradle.plugin.KotlinTarget | ||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinMetadataTarget | ||
import org.jetbrains.kotlin.gradle.targets.js.KotlinJsTarget | ||
|
||
/** | ||
* Collect all the root project's multiplatform targets and add them to the BOM. | ||
* | ||
* Only published subprojects are included. | ||
* | ||
* This supports Kotlin/Multiplatform and Kotlin/JS subprojects. | ||
*/ | ||
fun Project.collectBomConstraints() { | ||
val bomConstraints: DependencyConstraintHandler = dependencies.constraints | ||
rootProject.subprojects { | ||
val subproject = this | ||
|
||
subproject.plugins.withId("com.vanniktech.maven.publish.base") { | ||
subproject.plugins.withType<KotlinAndroidPluginWrapper> { | ||
bomConstraints.api(subproject) | ||
} | ||
|
||
subproject.plugins.withType<KotlinJsPluginWrapper> { | ||
bomConstraints.api(subproject) | ||
} | ||
|
||
subproject.plugins.withType<KotlinMultiplatformPluginWrapper> { | ||
subproject.extensions.getByType<KotlinMultiplatformExtension>().targets.all { | ||
bomConstraints.api(dependencyConstraint(this)) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
/** Returns a string like "com.squareup.okio:okio-iosarm64:3.4.0" for this target. */ | ||
private fun Project.dependencyConstraint(target: KotlinTarget): String { | ||
val artifactId = when (target) { | ||
is KotlinMetadataTarget -> name | ||
is KotlinJsTarget -> "$name-js" | ||
else -> "$name-${target.targetName.toLowerCase(Locale.ROOT)}" | ||
} | ||
return "$group:$artifactId:$version" | ||
} | ||
|
||
private fun DependencyConstraintHandler.api(constraintNotation: Any) = | ||
add("api", constraintNotation) |
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