com.google.osdetector
Owner: Eric Anderson
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/google/osdetector-gradle-plugin
Sources: https://github.com/google/osdetector-gradle-plugin
Version 1.7.3 (latest)
Created 09 February 2023.
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.google.osdetector") version "1.7.3"
}
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.google.osdetector:com.google.osdetector.gradle.plugin:1.7.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.google.osdetector") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.google.osdetector:com.google.osdetector.gradle.plugin:1.7.3") } } apply(plugin = "com.google.osdetector")
- Applying plugins to all subprojects .