forked from renaudcerrato/appengine-maven-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (35 loc) · 1013 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.google.appengine:gradle-appengine-plugin:1.9.42'
}
}
repositories {
jcenter();
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'appengine'
apply plugin: 'idea'
apply from: 'sanity-checks.gradle'
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
ext.appEngineVersion = '1.9.44'
ext.jerseyVersion = '2.24'
dependencies {
appengineSdk "com.google.appengine:appengine-java-sdk:$appEngineVersion"
compile 'javax.servlet:servlet-api:2.5'
compile "org.glassfish.jersey:jersey-bom:$jerseyVersion"
compile "org.glassfish.jersey.containers:jersey-container-servlet:$jerseyVersion"
compile "org.glassfish.jersey.ext:jersey-mvc-mustache:$jerseyVersion"
compile 'com.google.appengine.tools:appengine-gcs-client:0.6'
compile 'org.slf4j:slf4j-jdk14:1.7.18'
}
appengine {
downloadSdk = true
appcfg {
oauth2 = true
}
}