forked from ajoberstar/gradle-imports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (36 loc) · 902 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
43
44
45
46
47
48
plugins {
id 'groovy'
id 'maven-publish'
id 'com.jfrog.bintray' version '1.1'
id 'org.ajoberstar.defaults' version '0.5.0'
}
group = 'org.ajoberstar'
description = 'Gradle plugin for organizing imports in Java and Groovy sources.'
defaults {
id = 'ajoberstar'
bintrayRepo = 'gradle-plugins'
bintrayLabels = ['gradle', 'java', 'groovy']
developers = [
[id: 'ajoberstar', name: 'Andrew Oberstar', email: '[email protected]']
]
copyrightYears = '2014-2015'
}
sourceCompatibility = '1.7'
repositories {
mavenCentral()
}
dependencies {
// groovy
compile localGroovy()
// gradle
compile gradleApi()
// logging
compile 'org.slf4j:slf4j-api:1.7.6'
testRuntime 'org.slf4j:slf4j-simple:1.7.6'
// testing
testCompile 'junit:junit:4.11'
testCompile('org.spockframework:spock-core:0.7-groovy-2.0') { exclude group: 'org.codehaus.groovy' }
}
wrapper {
gradleVersion = '2.1'
}