Search Gradle plugins

com.github.c64lib.retro-assembler

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.7.6 (latest)

Created 06 October 2023.

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.7.6"
}

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.7.6")
    }
    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.7.6")
      }
    }
    
    apply(plugin = "com.github.c64lib.retro-assembler")
  • Applying plugins to all subprojects .