org.hivevm.cc
Owner: Markus Brigl
Gradle plugin to use the HiveVM parser generator!
Sources: https://github.com/hivevm/cc.git
Version 1.0.0
1.0.0
Created 12 November 2024.
Gradle plugin to use the HiveVM parser generator!
Using the plugins DSL:
plugins {
id("org.hivevm.cc") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.hivevm:fastcc:1.0.0")
}
}
apply(plugin = "org.hivevm.cc")
Using the plugins DSL:
plugins {
id "org.hivevm.cc" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.hivevm:fastcc:1.0.0"
}
}
apply plugin: "org.hivevm.cc"