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.1.1

1.1.1

Created 17 May 2021.

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.c64lib.retro-assembler:gradle:1.1.1")
      }
    }
    
    apply(plugin = "com.github.c64lib.retro-assembler")
  • Applying plugins to all subprojects .