-
Notifications
You must be signed in to change notification settings - Fork 1
/
dependency.gradle
48 lines (42 loc) · 2.05 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
repositories {
mavenCentral()
jcenter()
maven { url "https://jaspersoft.jfrog.io/artifactory/third-party-ce-artifacts" }
maven { url "http://jasperreports.sourceforge.net/maven2/" }
}
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:spring-security-oauth2"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
compile "com.fasterxml.jackson.datatype:jackson-datatype-hibernate4"
compile "org.openlmis:openlmis-service-util:3.0.0"
compile "com.github.tomakehurst:wiremock:1.58"
compile "commons-codec:commons-codec:1.15"
compile "commons-io:commons-io:2.11.0"
compile "net.sf.jasperreports:jasperreports:6.20.5"
compile "org.apache.commons:commons-lang3:3.5"
compile "org.apache.logging.log4j:log4j-api:2.17.1"
compile "org.flywaydb:flyway-core:4.0.3"
compile "org.javers:javers-spring-boot-starter-sql:2.8.1"
compile "org.postgresql:postgresql:42.2.20"
compile "org.projectlombok:lombok:1.18.22"
compile "org.webjars:swagger-ui:2.2.6"
compile "org.apache.poi:poi:5.2.2"
compile "org.apache.poi:poi-ooxml:5.2.2"
testCompile "com.github.tomakehurst:wiremock:1.58"
testCompile "com.jayway.restassured:rest-assured:2.7.0"
testCompile "guru.nidi.raml:raml-tester:0.8.9"
testCompile "io.rest-assured:rest-assured:3.0.0"
testCompile "io.rest-assured:json-schema-validator:3.0.0"
testCompile "io.rest-assured:spring-mock-mvc:3.0.0"
testCompile "junit:junit"
testCompile "org.mockito:mockito-core:1.+"
testCompile "org.powermock:powermock-api-mockito:1.6.5"
testCompile "org.powermock:powermock-module-junit4:1.6.5"
testCompile "org.springframework.boot:spring-boot-starter-test"
}