forked from dropbox/dropbox-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (26 loc) · 1017 Bytes
/
Copy pathbuild.gradle
File metadata and controls
32 lines (26 loc) · 1017 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
plugins {
id("java")
id("kotlin")
}
description = 'Consolidated Examples'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
implementation(project(":dropbox-sdk-java"))
implementation("org.eclipse.jetty.aggregate:jetty-server:8.1.18.v20150929")
implementation("javax.servlet:javax.servlet-api:3.1.0")
implementation("org.apache.commons:commons-lang3:3.4")
implementation("com.fasterxml.jackson.core:jackson-core:2.7.9")
implementation("com.fasterxml.jackson.core:jackson-databind:2.7.4")
implementation(dropboxJavaSdkLibs.okhttp3)
implementation("org.json:json:20220320")
testImplementation(dropboxJavaSdkLibs.test.junit)
}
test {
// Uses the "ci" gradle property and sets it as an environment variable for the test
environment("ci", project.findProperty("ci"))
// Ensure that tests are always run because integration tests are non-deterministic
outputs.upToDateWhen { false }
}