io.github.artfultom.vecenta-gradle-plugin
所有者: Andrey Vasilyev
Vecenta 框架代码生成的插件。它允许生成客户端、服务器、模型和异常。
https://github.com/artfultom/vecenta
源代码:https://github.com/artfultom/vecenta.git
版本 0.0.7(最新版)
0.0.7
创建于 2022 年 8 月 5 日。
Vecenta 框架代码生成的插件。它允许生成客户端、服务器、模型和异常。
使用 插件 DSL
plugins {
id("io.github.artfultom.vecenta-gradle-plugin") version "0.0.7"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.artfultom:vecenta-gradle-plugin:0.0.7")
}
}
apply(plugin = "io.github.artfultom.vecenta-gradle-plugin")
使用 插件 DSL
plugins {
id "io.github.artfultom.vecenta-gradle-plugin" version "0.0.7"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.artfultom:vecenta-gradle-plugin:0.0.7"
}
}
apply plugin: "io.github.artfultom.vecenta-gradle-plugin"