Search Gradle plugins

org.xtclang.xtc-plugin

A plugin that teaches Gradle the XTC language. First step to language server debugging and IDE support.

https://xtclang.org

Sources: https://github.com/xtclang/xvm

Version 0.4.4

Created 07 December 2023.

A plugin that teaches Gradle the XTC language. First step to language server debugging and IDE support.

Using the plugins DSL:

plugins {
  id("org.xtclang.xtc-plugin") version "0.4.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.xtclang:xtc-plugin:0.4.4")
  }
}

apply(plugin = "org.xtclang.xtc-plugin")

Using the plugins DSL:

plugins {
  id "org.xtclang.xtc-plugin" version "0.4.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.xtclang:xtc-plugin:0.4.4"
  }
}

apply plugin: "org.xtclang.xtc-plugin"

Learn how to apply plugins to subprojects