-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
54 lines (44 loc) · 1.26 KB
/
build.gradle
File metadata and controls
54 lines (44 loc) · 1.26 KB
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
44
45
46
47
48
49
50
51
52
53
54
/*
* This file was generated by the Gradle 'init' task.
*
* This is a general purpose Gradle build.
* Learn more about Gradle by exploring our samples at https://docs.gradle.org/6.7/samples
*/
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'application'
buildscript {
repositories {
mavenCentral()
}
}
group = "dmme"
version = "1.0.0"
repositories {
mavenCentral()
}
dependencies {
// Required for json api of java ee
implementation 'javax.json:javax.json-api:1.1'
implementation 'com.google.code.gson:gson:2.8.6'
// Required for json api of java ee
runtimeOnly 'org.glassfish:javax.json:1.1'
// https://mvnrepository.com/artifact/org.json/json
compile group: 'org.json', name: 'json', version: '20090211'
// Required for tests
compile 'org.junit.jupiter:junit-jupiter-api:5.6.3'
compile 'org.junit.jupiter:junit-jupiter-engine:5.6.3'
compile 'org.mongodb:mongodb-driver-sync:4.1.1'
compile 'org.mongodb:mongodb-driver-core:4.1.1'
compile 'org.mongodb:mongodb-driver-legacy:4.1.1'
}
application {
mainClass.set('dmme.kuvid.Application')
}
test {
useJUnitPlatform()
beforeTest { descriptor ->
logger.lifecycle("Running test: " + descriptor)
}
}