-
Notifications
You must be signed in to change notification settings - Fork 6
/
dependency.gradle
50 lines (44 loc) · 2.2 KB
/
dependency.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
repositories {
mavenCentral()
jcenter()
maven { url "https://jaspersoft.jfrog.io/artifactory/third-party-ce-artifacts" }
maven { url "http://jasperreports.sourceforge.net/maven2/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
compile 'org.springframework:spring-context-support'
compile "org.springframework:spring-test"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.springframework.boot:spring-boot-starter-data-rest"
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.springframework.boot:spring-boot-starter-security"
compile "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure:2.2.2.RELEASE"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
compile "com.fasterxml.jackson.datatype:jackson-datatype-hibernate4"
compile 'org.projectlombok:lombok:1.18.22'
compile "org.openlmis:openlmis-service-util:3.0.0"
compile "commons-codec:commons-codec"
compile "commons-io:commons-io:2.4"
compile "net.sf.jasperreports:jasperreports:6.5.1"
compile "org.apache.commons:commons-lang3"
compile "org.flywaydb:flyway-core"
compile 'org.javers:javers-spring-boot-starter-sql:5.13.2'
compile "org.postgresql:postgresql:42.0.0"
compile 'org.webjars.npm:api-console:3.0.17'
compile "org.apache.poi:poi:3.15"
compile "org.apache.poi:poi-ooxml:3.15"
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testCompile "com.github.tomakehurst:wiremock:1.58"
testCompile "com.jayway.restassured:rest-assured:2.7.0"
testCompile "guru.nidi.raml:raml-tester:0.8.15"
testCompile "org.raml:raml-parser:0.8.37"
testCompile "io.rest-assured:rest-assured"
testCompile "io.rest-assured:json-schema-validator"
testCompile "io.rest-assured:spring-mock-mvc"
testCompile "junit:junit"
testCompile "org.powermock:powermock-api-mockito2:2.0.4"
testCompile "org.powermock:powermock-module-junit4:2.0.4"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "nl.jqno.equalsverifier:equalsverifier:2.4"
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
}