-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (49 loc) · 1.16 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
48
49
50
51
52
53
54
55
56
57
58
59
plugins {
id "com.gradle.plugin-publish" version "0.9.6"
}
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'java-gradle-plugin'
project.group = 'com.etraveli.gradle.plugin'
project.version = project.getProperty("version")
sourceCompatibility = 1.7
targetCompatibility = 1.7
idea {
module {
excludeDirs += file('build')
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile gradleApi()
compile 'org.codehaus.groovy:groovy-all:2.4.7'
testCompile 'junit:junit:4.12'
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude module: 'groovy-all'
}
testCompile 'org.assertj:assertj-core:2.4.1'
}
test {
testLogging {
exceptionFormat 'full'
showStandardStreams = true
}
}
pluginBundle {
website = 'https://github.com/etraveli/bom-verifier'
vcsUrl = 'https://github.com/etraveli/bom-verifier'
description = 'Plugin for checking differences between previous and current configuration dependencies.'
tags = ['verification']
plugins {
bomVerifier {
id = 'com.etraveli.bom-verifier'
displayName = 'BOM Verifier'
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '3.1'
}