com.github.c64lib.retro-assembler
Owner:
Maciej Malecki
Embeds various 6502 assemblers and provides basic functionality to have builds for your beloved C64
https://c64lib.github.io/gradle-retro-assembler-plugin/
Sources: https://github.com/c64lib/gradle-retro-assembler-plugin
Version 1.1.0-rc01
Created 10 March 2020.
Embeds various 6502 assemblers and provides basic functionality to have builds for your beloved C64
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.c64lib.retro-assembler") version "1.1.0-rc01"
}
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.github.c64lib.retro-assembler:com.github.c64lib.retro-assembler.gradle.plugin:1.1.0-rc01") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.c64lib.retro-assembler") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.c64lib.retro-assembler:com.github.c64lib.retro-assembler.gradle.plugin:1.1.0-rc01") } } apply(plugin = "com.github.c64lib.retro-assembler")
- Applying plugins to all subprojects .