-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
76 lines (59 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import java.lang.ClassValue.Version;
apply plugin: 'war'
apply plugin: 'gaelyk'
apply plugin: 'appengine-geb'
def compatibilityVersion = 1.7
sourceCompatibility = compatibilityVersion
targetCompatibility = compatibilityVersion
appengine {
app {
id = 'e-procurement-2'
version = 1
}
appcfg {
email = "[email protected]"
noCookies = false
oauth2 = true
}
}
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-gaelyk-plugin:0.6'
classpath 'org.gradle.api.plugins:gradle-appengine-geb-plugin:0.4'
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
def gaeVersion = '1.9.4'
def groovyVersion = '2.3.0'
compile "org.codehaus.groovy:groovy-all:${groovyVersion}"
compile "com.google.appengine:appengine-api-1.0-sdk:$gaeVersion",
"com.google.appengine:appengine-api-labs:$gaeVersion"
compile 'org.sitemesh:sitemesh:3.0-alpha-2'
compile 'org.gaelyk:gaelyk:2.1.2'
testCompile 'org.gaelyk:gaelyk-spock:0.4'
testCompile "com.google.appengine:appengine-api-stubs:$gaeVersion",
"com.google.appengine:appengine-testing:$gaeVersion"
functionalTestCompile 'org.seleniumhq.selenium:selenium-firefox-driver:2.40.0'
functionalTestCompile 'org.gebish:geb-spock:0.9.2'
appengineSdk "com.google.appengine:appengine-java-sdk:$gaeVersion"
/**
* To add binary plugin just declare it as a dependency. For example,
* uncomment following to add GPars support to your Gaelyk project.
* @see https://github.com/musketyr/gpars-appengine
*/
// compile 'org.codehaus.gpars:gpars-appengine:0.1'
/**
* Gaelyk console serves as playground or key-hole surgery tool for
* your application
* @see https://github.com/gaelyk/gaelyk-console
*/
// compile 'org.gaelyk:gaelyk-console:2.0'
}