-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
24 lines (18 loc) · 897 Bytes
/
dependencies.gradle
File metadata and controls
24 lines (18 loc) · 897 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
dependencies {
runtimeOnly "io.methvin:directory-watcher", {
exclude group: 'com.google.guava', module: 'guava'
}
// For chart images
implementation 'org.jfree:jfreechart:1.5.2'
implementation 'org.jfree:org.jfree.svg:5.0.5'
// For Markdown parsing
implementation 'com.vladsch.flexmark:flexmark-all:0.64.0'
implementation group: 'org.dita-ot', name: 'dost', version: '3.7.1'
testImplementation group: 'uk.ac.ox.softeng.maurodatamapper', name: 'mdm-testing-framework', version: mdmCoreVersion
implementation group: 'uk.ac.ox.softeng.maurodatamapper', name: 'dita-dsl', version: '1.0.0-SNAPSHOT'
// Postgres database
runtimeOnly group: 'org.flywaydb', name: 'flyway-core'
runtimeOnly "org.hibernate:hibernate-jcache"
runtimeOnly group: 'org.ehcache', name: 'ehcache'
runtimeOnly group: 'org.postgresql', name: 'postgresql'
}