forked from glaforge/groovywebconsole
-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
62 lines (49 loc) · 1.45 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
buildscript {
repositories {
add(new org.apache.ivy.plugins.resolver.URLResolver()) {
name = "GitHub"
addArtifactPattern 'http://cloud.github.com/downloads/bmuschko/gradle-gae-plugin/[module]-[revision].[ext]'
}
mavenCentral()
}
dependencies {
classpath ':gradle-gae-plugin:0.5.4'
}
}
group = "org.spockframework"
version = "1.0"
apply plugin: "groovy"
apply plugin: "war"
apply plugin: "idea"
apply plugin: "eclipse"
apply plugin: "gae"
sourceCompatibility = 1.5
targetCompatibility = 1.5
repositories {
flatDir dirs: "$rootDir/lib"
mavenCentral()
maven {
url "http://m2repo.spockframework.org/snapshots"
}
maven {
url "http://m2repo.spockframework.org/releases"
}
}
dependencies {
// from Maven repos
groovy "org.codehaus.groovy:groovy-all:1.8.6"
compile "org.spockframework:spock-core:0.6-groovy-1.8-SNAPSHOT@jar"
compile "junit:junit-dep:4.9"
runtime "org.hamcrest:hamcrest-core:1.2"
runtime "com.google.appengine:appengine-api-1.0-sdk:1.6.2"
runtime "com.google.appengine:appengine-api-labs:1.6.2"
runtime "org.gaelyk:gaelyk:1.1"
gaeSdk 'com.google.appengine:appengine-java-sdk:1.6.2'
// from lib folder
runtime ":ocpsoft-pretty-time-1:1.0.2"
//providedCompile "javax.servlet:servlet-api:2.5"
}
downloadSdk = true
task wrapper(type: Wrapper, description: "Creates Gradle wrapper (rarely needed)") {
gradleVersion = '1.0-milestone-8'
}