forked from thombergs/code-examples
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (20 loc) · 399 Bytes
/
build.gradle
File metadata and controls
25 lines (20 loc) · 399 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
buildscript {
repositories {
mavenCentral()
}
}
apply plugin: 'java'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'io.reactivex.rxjava3:rxjava:3.0.0-RC9'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.0.1'
testImplementation 'org.awaitility:awaitility:3.0.0'
}
test {
useJUnitPlatform()
}