-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
47 lines (40 loc) · 1.1 KB
/
build.gradle
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
37
38
39
40
41
42
43
44
45
46
47
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
}
plugins {
id 'java-gradle-plugin'
id 'groovy'
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.12.0'
}
group 'io.dotinc'
version '0.1.1'
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
testImplementation gradleTestKit()
testImplementation 'io.vertx:vertx-core:3.8.4'
testImplementation 'io.vertx:vertx-web:3.8.4'
testImplementation 'junit:junit:4.12'
}
pluginBundle {
website = 'https://github.com/bulivlad/vertx-codegen-plugin'
vcsUrl = 'https://github.com/bulivlad/vertx-codegen-plugin'
tags = ["vertx", "vert.x", "reactive", "codegen", "codegen-java"]
}
gradlePlugin {
plugins {
vertxCodegenPlugin {
id = 'io.dotinc.vertx-codegen-plugin'
displayName = 'Vert.x Codegen Gradle Plugin'
description = 'A Gradle plugin to facilitate the codegen usage for Vert.x Java projects'
implementationClass = 'io.dotinc.gradle.CodeGenPlugin'
}
}
}