forked from renaudcerrato/appengine-maven-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 1.14 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.+'
}
}
repositories {
mavenCentral()
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'com.google.cloud.tools.appengine-standard'
apply plugin: 'idea'
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
ext.jerseyVersion = '2.43'
dependencies {
implementation 'com.google.appengine:appengine-api-1.0-sdk:2.0.21'
implementation 'org.junit.jupiter:junit-jupiter:5.8.1'
providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
implementation "org.glassfish.jersey:jersey-bom:$jerseyVersion"
implementation "org.glassfish.jersey.containers:jersey-container-servlet:$jerseyVersion"
implementation "org.glassfish.jersey.ext:jersey-mvc-mustache:$jerseyVersion"
runtimeOnly "org.glassfish.jersey.inject:jersey-hk2:$jerseyVersion"
implementation 'com.google.cloud:google-cloud-storage:2.40.1'
implementation 'org.slf4j:slf4j-jdk14:1.7.18'
}
appengine {
deploy {
projectId = 'GCLOUD_CONFIG'
version = 'v1'
}
}