-
Notifications
You must be signed in to change notification settings - Fork 2.8k
/
Copy pathbuild.gradle
113 lines (95 loc) · 3.47 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// [START gradle]
buildscript { // Configuration for building
repositories {
jcenter() // Bintray's repository - a fast Maven Central mirror & more
mavenCentral()
}
dependencies {
classpath 'com.google.cloud.tools:appengine-gradle-plugin:2.5.0'
classpath 'org.akhikhl.gretty:gretty:+'
}
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty' // To get webappcopy
apply plugin: 'com.google.cloud.tools.appengine'
group = 'com.example.google.cloud.bigtable'
version = '0.1-SNAPSHOT'
sourceCompatibility = 17
targetCompatibility = 17
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
jcenter()
mavenCentral()
}
dependencies {
compile group: 'com.google.cloud.bigtable', name: 'bigtable-hbase-1.2', version:'1.0.0-pre3'
compile group: 'org.apache.hbase', name: 'hbase-client', version:'2.5.6'
compile group: 'io.netty', name: 'netty-tcnative-boringssl-static', version:'2.0.62.Final'
compile group: 'jstl', name: 'jstl', version:'1.2'
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.1.0'
testCompile group: 'com.google.truth', name: 'truth', version:'1.1.5'
testCompile group: 'junit', name: 'junit', version:'4.13.2'
testCompile group: 'org.mockito', name: 'mockito-core', version:'4.11.0'
}
import org.apache.tools.ant.filters.ReplaceTokens
gretty {
contextPath = '/'
servletContainer = 'jetty9'
jvmArgs = [ '-DBIGTABLE_PROJECT=' + System.getProperty("bigtable.projectID"),
'-DBIGTABLE_INSTANCE=' + System.getProperty("bigtable.instanceID")]
webappCopy {
// Enable filtering on all xml files in WEB-INF
filesMatching "**/WEB-INF/*.xml", { FileCopyDetails fileDetails ->
logger.lifecycle 'File filtered: {}', fileDetails.path
filter (ReplaceTokens, tokens: [
'bigtable.projectID' : System.getProperty("bigtable.projectID"),
'bigtable.instanceID': System.getProperty("bigtable.instanceID")
])
}
}
}
// Always run unit tests
appengineDeploy.dependsOn test
// [START model]
appengine {
run {
}
deploy { // deploy configuration
stopPreviousVersion = true // default - stop the current version
promote = true // default - & make this the current version
}
}
test {
useJUnit()
testLogging.showStandardStreams = true
systemProperty 'BIGTABLE_PROJECT', System.getProperty("bigtable.projectID")
systemProperty 'BIGTABLE_INSTANCE',System.getProperty("bigtable.instanceID")
beforeTest { descriptor ->
logger.lifecycle("test: " + descriptor + " Running")
}
onOutput { descriptor, event ->
logger.lifecycle("test: " + descriptor + ": " + event.message )
}
afterTest { descriptor, result ->
logger.lifecycle("test: " + descriptor + ": " + result )
}
}
// [END model]
// [END gradle]