PassAndroid/backend/build.gradle

28 lines
703 B
Groovy
Raw Permalink Normal View History

2015-05-17 21:50:27 +00:00
buildscript {
repositories {
jcenter()
}
dependencies {
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'
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'
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'
implementation 'com.ganyo:gcm-server:1.1.0'
2015-05-17 21:50:27 +00:00
}