-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (31 loc) · 1.05 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
plugins {
id 'application'
}
apply plugin : "java"
group 'mlyon'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
compileJava {
options.compilerArgs += ["-Xlint:unchecked"]
}
dependencies {
compile group: 'com.typesafe.akka', name: 'akka-http_2.12', version: '10.1.11'
compile group: 'com.typesafe.akka', name: 'akka-stream_2.12', version: '2.5.26'
compile group: 'com.typesafe.akka', name: 'akka-http-jackson_2.12', version: '10.1.11'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testCompileOnly 'junit:junit:4.12'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.3.1'
testImplementation 'org.awaitility:awaitility:4.0.2'
testCompile group: 'com.typesafe.akka', name: 'akka-stream-testkit_2.12', version: '2.5.26'
testCompile group: 'com.typesafe.akka', name: 'akka-http-testkit_2.12', version: '10.1.11'
}
test {
useJUnitPlatform()
}
application {
mainClassName = "minibank.Main"
}