-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
42 lines (36 loc) · 1013 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 'groovy'
id 'maven-publish'
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.14.0'
id 'io.freefair.lombok' version '6.0.0-m2'
}
group 'de.lukaskoerfer.gradle'
version '0.3'
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
}
javadoc {
options.links 'https://docs.oracle.com/javase/8/docs/api/',
'https://docs.gradle.org/current/javadoc/'
destinationDir = file('docs/javadoc')
}
gradlePlugin {
plugins {
plugin {
id = 'de.lukaskoerfer.gradle.magicdraw'
displayName = 'MagicDraw Plugin'
description = 'Supports the development of plugins for MagicDraw'
implementationClass = 'de.lukaskoerfer.gradle.magicdraw.MagicDrawPlugin'
}
}
}
pluginBundle {
website = 'https://github.com/lukoerfer/gradle-magicdraw'
vcsUrl = 'https://github.com/lukoerfer/gradle-magicdraw'
tags = ['magicDraw', 'plugin']
}