-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
36 lines (30 loc) · 925 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
plugins {
`java-gradle-plugin`
`maven-publish`
id("com.gradle.plugin-publish") version "1.0.0"
id("org.jetbrains.kotlin.jvm") version "1.3.72"
}
group = "io.github.artfultom"
version = "0.0.7"
tasks.withType<Wrapper> {
gradleVersion = "7.1"
}
gradlePlugin {
val plugin by plugins.creating {
id = "io.github.artfultom.vecenta-gradle-plugin"
implementationClass = "io.github.artfultom.vecenta.tools.VecentaPlugin"
displayName = "Vecenta Gradle Plugin"
description = "Plugin for Vecenta Framework code generation. It allows generation of clients, servers, models and exceptions."
}
}
repositories {
mavenCentral()
}
dependencies {
api("io.github.artfultom:vecenta:0.0.7")
}
pluginBundle {
website = "https://github.com/artfultom/vecenta"
vcsUrl = "https://github.com/artfultom/vecenta.git"
tags = listOf("java", "rpc", "vecenta", "plugins")
}