nl.martijndwars.spoofax
Owner: Martijn Dwars
Build Spoofax languages using Gradle.
https://github.com/MartijnDwars/spoofax-gradle-plugin
Sources: https://github.com/MartijnDwars/spoofax-gradle-plugin
Version 1.2.5 (latest)
1.2.5
Created 02 March 2022.
Build Spoofax languages using Gradle.
Using the plugins DSL:
plugins {
id("nl.martijndwars.spoofax") version "1.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("nl.martijndwars:spoofax-gradle-plugin:1.2.5")
}
}
apply(plugin = "nl.martijndwars.spoofax")
Using the plugins DSL:
plugins {
id "nl.martijndwars.spoofax" version "1.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "nl.martijndwars:spoofax-gradle-plugin:1.2.5"
}
}
apply plugin: "nl.martijndwars.spoofax"