-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
42 lines (34 loc) · 944 Bytes
/
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
plugins {
id "com.gradle.plugin-publish" version "1.2.1"
id 'java-gradle-plugin'
}
apply plugin: "java"
apply plugin: "eclipse"
ext {
pluginId = 'com.webcohesion.enunciate'
}
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation "com.webcohesion.enunciate:enunciate-top:2.18.0"
}
sourceCompatibility = "17"
targetCompatibility = "17"
version = "2.18.0"
group = "com.webcohesion.enunciate"
gradlePlugin {
website = 'http://enunciate.webcohesion.com/'
vcsUrl = 'https://github.com/stoicflame/enunciate-gradle'
plugins {
enunciatePlugin {
id = 'com.webcohesion.enunciate'
implementationClass = 'com.webcohesion.enunciate.gradle.EnunciatePlugin'
displayName = 'Gradle Enunciate plugin'
description = 'Generate project documentation with Enunciate'
tags.set(['enunciate', 'documentation'])
}
}
}
tasks['eclipse'].dependsOn("cleanEclipseClasspath", "pluginUnderTestMetadata")