-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
43 lines (37 loc) · 1.07 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
plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.10.0'
id 'groovy'
}
apply from: './gradle/test-configuration.gradle'
apply from: './gradle/code-quality.gradle'
version = '2.0.0'
group = 'com.github.dispader.manifesto'
sourceCompatibility = 1.8
sourceCompatibility = 1.8
repositories.jcenter()
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.5.8'
compile 'org.ajoberstar:grgit:2.3.0'
}
gradlePlugin {
plugins {
manifesto {
id = 'com.github.dispader.manifesto'
displayName = 'Manifesto plugin'
implementationClass = 'com.github.dispader.manifesto.ManifestoPlugin'
}
}
}
pluginBundle {
website = 'https://github.com/Dispader/manifesto'
vcsUrl = 'https://github.com/Dispader/manifesto'
description = 'JAr and WAr manifests made less painful.'
tags = ['version', 'versioning', 'git', 'describe', 'git describe']
plugins {
manifesto {
id = 'com.github.dispader.manifesto'
displayName = 'Manifesto plugin'
}
}
}