com.roscopeco.jasm
Owner: Ross Bamford
Plugin supporting the Jasm assembler
https://github.com/roscopeco/jasm-gradle-plugin
Sources: https://github.com/roscopeco/jasm-gradle-plugin.git
Version 0.7.0 (latest)
0.7.0
Created 17 September 2022.
Plugin supporting the Jasm assembler
Using the plugins DSL:
plugins {
id("com.roscopeco.jasm") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.roscopeco.jasm:jasm-gradle-plugin:0.7.0")
}
}
apply(plugin = "com.roscopeco.jasm")
Using the plugins DSL:
plugins {
id "com.roscopeco.jasm" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.roscopeco.jasm:jasm-gradle-plugin:0.7.0"
}
}
apply plugin: "com.roscopeco.jasm"