-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 930 Bytes
/
build.gradle
File metadata and controls
32 lines (27 loc) · 930 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 'application'
//id "com.github.johnrengelman.shadow" version "2.0.1"
}
description = 'P2P_Network'
version = '1.0'
sourceCompatibility = 1.8
mainClassName = 'Server'
repositories {
mavenCentral()
}
dependencies {
compile 'com.sparkjava:spark-core:2.6.0'
compile 'com.google.code.gson:gson:2.8.2'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
//testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
//testCompile group: 'org.powermock', name: 'powermock-core', version: '1.7.3'
//testCompile group: 'org.powermock', name: 'powermock-api-mockito', version: '1.7.3'
//testCompile group: 'org.powermock', name: 'powermock-module-junit4', version: '1.7.3'
//testCompile 'junit:junit:4.12'
}
// shadowJar {
// baseName = 'ServerJar'
// classifier = null
// version = null
// }