-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (49 loc) · 1.43 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
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'gae'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-gae-plugin:0.9'
}
}
repositories {
mavenCentral()
}
dependencies {
gaeSdk 'com.google.appengine:appengine-java-sdk:1.8.3'
compile 'org.glassfish.jersey.core:jersey-server:2.2'
compile 'org.glassfish.jersey.containers:jersey-container-servlet-core:2.2'
compile 'org.glassfish.jersey.ext:jersey-mvc-jsp:2.2'
compile 'org.glassfish.jersey.ext:jersey-bean-validation:2.2'
compile 'org.glassfish.jersey.media:jersey-media-json-jackson:2.2'
compile 'org.glassfish.jersey.media:jersey-media-multipart:2.2'
compile 'javax:javaee-api:7.0'
compile 'org.slf4j:slf4j-api:1.7.5'
compile 'org.slf4j:jul-to-slf4j:1.7.5'
compile 'ch.qos.logback:logback-core:1.0.13'
compile 'ch.qos.logback:logback-classic:1.0.13'
compile 'org.codehaus.groovy:groovy:1.8.9'
compile 'com.googlecode.objectify:objectify:4.0rc1'
compile 'joda-time:joda-time:2.2'
compile 'jstl:jstl:1.2'
compile 'org.yaml:snakeyaml:1.12'
}
gae {
downloadSdk = true
appcfg {
oauth2 = true
logs {
severity = 1
outputFile = file('openglad-site-log.txt')
}
app {
id = "openglad-site"
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '1.7'
}