de.hhu.stups.sablecc
Generate parsers using SableCC
https://gitlab.cs.uni-duesseldorf.de/general/stups/sablecc_gradle_plugin
Sources: https://gitlab.cs.uni-duesseldorf.de/general/stups/sablecc_gradle_plugin
Using the plugins DSL:
plugins {
id("de.hhu.stups.sablecc") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.hhu.stups:sablecc_gradle_plugin:1.1.0")
}
}
apply(plugin = "de.hhu.stups.sablecc")
Using the plugins DSL:
plugins {
id "de.hhu.stups.sablecc" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.hhu.stups:sablecc_gradle_plugin:1.1.0"
}
}
apply plugin: "de.hhu.stups.sablecc"