-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
43 lines (36 loc) · 1007 Bytes
/
build.gradle.kts
File metadata and controls
43 lines (36 loc) · 1007 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
33
34
35
36
37
38
39
40
41
42
43
buildscript {
repositories {
jcenter()
}
dependencies {
classpath("org.junit.platform:junit-platform-gradle-plugin:1.0.3")
}
}
plugins {
java
application
}
apply {
plugin("org.junit.platform.gradle.plugin")
}
application {
mainClassName = "fr.uvsq.poo.tpljava.Application"
}
dependencies {
// Logging
compile("org.apache.logging.log4j:log4j-api:2.10.0")
compile("org.apache.logging.log4j:log4j-core:2.10.0")
compile("com.fasterxml.jackson.core:jackson-databind:2.9.4")
compile("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.4")
// Pour les tests unitaires
testCompile("org.junit.jupiter:junit-jupiter-api:5.0.3")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.0.3")
testRuntime("org.junit.jupiter:junit-jupiter-params:5.0.3")
testCompile("org.hamcrest:hamcrest-all:1.3")
}
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
}
repositories {
jcenter()
}