搜索 Gradle 插件

org.xtclang.xtc-plugin

所有者: lagergren

一个教授 Gradle XTC 语言的插件。语言服务器调试和 IDE 支持的第一步。

https://xtclang.org

源代码: https://github.com/xtclang/xvm

版本 0.4.5 (最新版)

0.4.5

创建于 2024 年 4 月 30 日。

一个教授 Gradle XTC 语言的插件。语言服务器调试和 IDE 支持的第一步。

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

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

学习如何将插件应用到子项目中