-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
36 lines (29 loc) · 1.03 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
apply plugin: 'java'
group = 'fr.ocroquette.wampoc'
version = '0.0.1-SNAPSHOT'
description = """fr.ocroquette.wampoc"""
compileJava {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
maven { url "https://repo.maven.apache.org/maven2" }
google()
}
dependencies {
implementation group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.6.5'
implementation group: 'org.eclipse.jetty', name: 'jetty-server', version:'8.1.3.v20120416'
implementation group: 'org.eclipse.jetty', name: 'jetty-servlet', version:'8.1.3.v20120416'
implementation group: 'org.eclipse.jetty', name: 'jetty-websocket', version:'8.1.8.v20121106'
implementation group: 'com.google.code.gson', name: 'gson', version:'2.2.2'
implementation group: 'org.apache.commons', name: 'commons-lang3', version:'3.1'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
}
test {
testLogging {
events "passed", "skipped", "failed"
}
}