forked from exactaworks/online-covid-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (53 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
plugins {
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'org.springframework.boot' version '2.3.3.RELEASE'
id 'java'
}
group = 'br.com.online.covid.info.api'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
repositories {
mavenCentral()
}
dependencies {
// SPRING
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.guice:spring-guice:1.1.4.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// DATABASE
implementation 'org.flywaydb:flyway-core:6.3.0'
implementation 'org.jdbi:jdbi3-core:3.11.1'
runtimeOnly 'com.h2database:h2:1.4.200'
// APACHE
implementation 'org.apache.commons:commons-text:1.8'
implementation 'org.apache.httpcomponents:httpcore:4.4.12'
implementation 'org.apache.commons:commons-lang3:3.9'
implementation 'commons-io:commons-io:2.6'
implementation 'commons-codec:commons-codec:1.13'
// OTHERS
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.1'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation 'org.json:json:20190722'
implementation 'org.modelmapper:modelmapper:2.1.1'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.5.5'
// TESTS
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.mockito:mockito-core:2.+'
//LOMBOK
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}
wrapper {
gradleVersion = '6.2.2'
distributionType = Wrapper.DistributionType.ALL
}
test {
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
}