com.tisonkun.osdetector
Owner: Zili Chen
A Gradle plugin that detects the OS name and architecture, providing a uniform classifier to be used in the names of native artifacts.
https://github.com/tisonkun/os-detector/
Sources: https://github.com/tisonkun/os-detector.git
Version 0.6.0 (latest)
Created 23 October 2024.
A Gradle plugin that detects the OS name and architecture, providing a uniform classifier to be used in the names of native artifacts.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.tisonkun.osdetector") version "0.6.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.tisonkun.osdetector:com.tisonkun.osdetector.gradle.plugin:0.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.tisonkun.osdetector") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.tisonkun.osdetector:com.tisonkun.osdetector.gradle.plugin:0.6.0") } } apply(plugin = "com.tisonkun.osdetector")
- Applying plugins to all subprojects .