de.qaware.seu.as.code.platform
Owner: SEU-as-code
A basic Gradle plugin to apply platform specific configuration in a Gradle build file.
https://github.com/seu-as-code/seu-as-code.plugins/tree/master/seuac-platform-plugin
Sources: https://github.com/seu-as-code/seu-as-code.plugins.git
Version 1.1.0 (latest)
Created 09 May 2018.
A basic Gradle plugin to apply platform specific configuration in a Gradle build file.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.qaware.seu.as.code.platform") version "1.1.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("de.qaware.seu.as.code.platform:de.qaware.seu.as.code.platform.gradle.plugin:1.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("de.qaware.seu.as.code.platform") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.qaware.seu.as.code.platform:de.qaware.seu.as.code.platform.gradle.plugin:1.1.0") } } apply(plugin = "de.qaware.seu.as.code.platform")
- Applying plugins to all subprojects .