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.5 (latest)

Created 30 April 2024.

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.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects