-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·34 lines (27 loc) · 815 Bytes
/
build.gradle
File metadata and controls
executable file
·34 lines (27 loc) · 815 Bytes
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
wrapper {
gradleVersion = '6.0.1'
}
subprojects {
println "Configure project: $name"
apply plugin: "java"
repositories {
mavenCentral()
}
ext {
javaVersion = 11
apacheVersion = '4.5.11'
libs = [
"apache_http_client" : "org.apache.httpcomponents:httpclient:$apacheVersion",
"apache_http_fluent_hc" : "org.apache.httpcomponents:fluent-hc:$apacheVersion",
"rest_assured" : "io.rest-assured:rest-assured:4.3.0",
]
}
if (plugins.hasPlugin('java')) {
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
dependencies {
testCompile "org.hamcrest:hamcrest-core:1.3"
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
}
}