Search Gradle plugins

Version 1.0.1

1.0.1

Created 14 November 2024.

Gradle plugin to use the HiveVM parser generator!

Using the plugins DSL:

plugins {
  id("org.hivevm.cc") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.hivevm:hivecc:1.0.1")
  }
}

apply(plugin = "org.hivevm.cc")

Using the plugins DSL:

plugins {
  id "org.hivevm.cc" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.hivevm:hivecc:1.0.1"
  }
}

apply plugin: "org.hivevm.cc"

Learn how to apply plugins to subprojects