io.github.bingoliallen.qcasm-plugin-gradle
Owner:
bingoli
Gradle plugin to qcasm
https://github.com/Bingoliallen/qcasm-plugin-gradle
Sources: https://github.com/Bingoliallen/qcasm-plugin-gradle
Version 1.0.0 (latest)
Created 21 January 2025.
Gradle plugin to qcasm
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.bingoliallen.qcasm-plugin-gradle") version "1.0.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("io.github.bingoliallen.qcasm-plugin-gradle:io.github.bingoliallen.qcasm-plugin-gradle.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.bingoliallen.qcasm-plugin-gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.bingoliallen.qcasm-plugin-gradle:io.github.bingoliallen.qcasm-plugin-gradle.gradle.plugin:1.0.0") } } apply(plugin = "io.github.bingoliallen.qcasm-plugin-gradle")
- Applying plugins to all subprojects .