forked from johnrengelman/gradle-processes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (41 loc) · 1.32 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
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'jengelman' at '12/2/13 5:58 PM' with Gradle 1.9
*
* This generated file contains a sample Groovy project to get you started.
* For more details take a look at the Groovy Quickstart chapter in the Gradle
* user guide available at http://gradle.org/docs/1.9/userguide/tutorial_groovy_projects.html
*/
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.3'
}
}
apply plugin: 'groovy'
apply from: file('gradle/codenarc.gradle')
group = 'com.github.jengelman.gradle.plugins'
version = '0.3.0'
ext.isSnapshot = version.endsWith("SNAPSHOT")
repositories {
jcenter()
maven {
url 'http://dl.bintray.com/johnrengelman/gradle-plugins'
}
}
dependencies {
compile gradleApi()
compile localGroovy()
testCompile 'org.spockframework:spock-core:0.7-groovy-1.8'
testCompile 'junit:junit:4.11'
testCompile 'org.hamcrest:hamcrest-core:1.3'
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile 'com.github.jengelman.gradle.plugins:gradle-test-kit:0.2'
}
sourceCompatibility = 1.6
targetCompatibility = 1.6
apply from: file('gradle/docs.gradle')
apply from: file('gradle/publishing.gradle')
apply from: file('gradle/idea.gradle')