-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
30 lines (25 loc) · 1.02 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
plugins {
id 'atlas-web-app.java-conventions'
id 'java-library'
id "io.spring.dependency-management" version "1.0.6.RELEASE"
}
dependencyManagement {
imports {
mavenBom 'org.springframework:spring-framework-bom:5.1.6.RELEASE'
}
}
dependencies {
implementation 'org.springframework:spring-jdbc'
implementation 'org.springframework:spring-webmvc'
implementation 'org.springframework:spring-webflux'
implementation 'io.projectreactor.netty:reactor-netty:0.8.6.RELEASE'
implementation 'org.reactivestreams:reactive-streams:1.0.2'
implementation 'org.apache.commons:commons-configuration2:2.4'
implementation 'commons-collections:commons-collections:3.2.2'
implementation 'com.zaxxer:HikariCP:3.3.1'
implementation 'joda-time:joda-time:2.10.1'
implementation 'uk.ac.ebi.fg:ae-efo-loader:1.0.5'
implementation 'commons-jxpath:commons-jxpath:1.3'
implementation 'commons-beanutils:commons-beanutils:1.9.3'
testImplementation 'io.github.artsok:rerunner-jupiter:2.1.6'
}