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.3.1
Created 01 September 2015.
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.3.1"
}
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.3.1") }
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.3.1") } } apply(plugin = "com.google.osdetector")
- Applying plugins to all subprojects .