-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
32 lines (27 loc) · 837 Bytes
/
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M4'
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'org.junit.platform.gradle.plugin'
version = '1.0.0'
sourceCompatibility = 1.8
jar.baseName = 'star-wars'
mainClassName = "com.shpota.starwars.Controller"
repositories {
mavenCentral()
}
dependencies {
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.0.0-M4'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.0.0-M4'
testCompile 'org.junit.platform:junit-platform-commons:1.0.0-M4'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.0.0-M4'
}