io.github.artfultom.vecenta-gradle-plugin
Owner: Andrey Vasilyev
Plugin for Vecenta Framework code generation. It allows generation of clients, servers, models and exceptions.
https://github.com/artfultom/vecenta
Sources: https://github.com/artfultom/vecenta.git
Version 0.0.7 (latest)
0.0.7
Created 05 August 2022.
Plugin for Vecenta Framework code generation. It allows generation of clients, servers, models and exceptions.
Using the plugins DSL:
plugins {
id("io.github.artfultom.vecenta-gradle-plugin") version "0.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.artfultom:vecenta-gradle-plugin:0.0.7")
}
}
apply(plugin = "io.github.artfultom.vecenta-gradle-plugin")
Using the plugins DSL:
plugins {
id "io.github.artfultom.vecenta-gradle-plugin" version "0.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.artfultom:vecenta-gradle-plugin:0.0.7"
}
}
apply plugin: "io.github.artfultom.vecenta-gradle-plugin"