2015-05-17 21:50:27 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-10-29 15:43:54 +00:00
|
|
|
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.2.0'
|
2015-05-17 21:50:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2019-05-06 07:01:33 +00:00
|
|
|
jcenter()
|
2015-05-17 21:50:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'war'
|
2019-10-29 15:43:54 +00:00
|
|
|
apply plugin: 'com.google.cloud.tools.appengine'
|
2015-05-17 21:50:27 +00:00
|
|
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_7
|
|
|
|
|
|
|
|
dependencies {
|
2020-02-16 05:23:25 +00:00
|
|
|
implementation 'com.google.appengine:appengine-endpoints:1.9.78'
|
|
|
|
implementation 'com.google.appengine:appengine-endpoints-deps:1.9.78'
|
2019-10-29 15:43:54 +00:00
|
|
|
implementation 'javax.servlet:javax.servlet-api:4.0.1'
|
2020-02-16 05:23:25 +00:00
|
|
|
implementation 'com.googlecode.objectify:objectify:6.0.6'
|
2019-10-29 15:43:54 +00:00
|
|
|
implementation 'com.ganyo:gcm-server:1.1.0'
|
2015-05-17 21:50:27 +00:00
|
|
|
}
|