forked from CaboLabs/openEHR-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (39 loc) · 1.81 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Groovy project to get you started.
* For more details take a look at the Groovy Quickstart chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.4.1/userguide/tutorial_groovy_projects.html
*/
plugins {
// Apply the groovy plugin to add support for Groovy
id 'groovy'
// Apply the application plugin to add support for building a CLI application.
id 'application'
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
// Use the latest Groovy version for building this library
implementation 'org.codehaus.groovy:groovy-all:2.5.10'
// Use the awesome Spock testing and specification framework
testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5'
// https://mvnrepository.com/artifact/log4j/log4j
implementation group: 'log4j', name: 'log4j', version: '1.2.17'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
//implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.14.0'
// https://mvnrepository.com/artifact/de.odysseus.staxon/staxon
implementation group: 'de.odysseus.staxon', name: 'staxon', version: '1.3'
// https://github.com/networknt/json-schema-validator
implementation(group: "com.networknt", name: "json-schema-validator", version: "1.0.52");
//implementation fileTree(dir: 'lib', include: ['*.jar'])
// json serialization for tests that handles loops correctly
testImplementation group: 'com.cedarsoftware', name: 'json-io', version: '4.12.0'
}
application {
// Define the main class for the application.
mainClass = 'com.cabolabs.openehr.opt.Main'
}