- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
Latest commit
27 lines (21 loc) · 398 Bytes
/
Copy pathbuild.gradle
File metadata and controls
27 lines (21 loc) · 398 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
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility =1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.mockito:mockito-core:2.+'
}
jar {
manifest {
attributes 'Main-Class': 'httpserver.App'
}
}
test {
testLogging {
exceptionFormat ='full'
}
}