-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
56 lines (45 loc) · 1.15 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
buildscript {
ext {
springBootVersion = '2.0.6.RELEASE'
}
repositories {
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'jacoco'
apply from: 'gradle/spring-boot.gradle'
apply from: 'gradle/swagger.gradle'
group = 'ua.romankh3.movie.tracking'
version = '1.0.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
mavenLocal()
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}
dependencies {
compile 'com.mashape.unirest:unirest-java:1.4.9'
compile 'org.jsoup:jsoup:1.7.2'
compile 'org.apache.commons:commons-lang3:3.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.4'
compileOnly 'org.projectlombok:lombok:1.18.4'
testCompile group: 'org.testcontainers', name: 'mysql', version: '1.9.1'
testCompile("junit:junit")
runtime 'mysql:mysql-connector-java'
}
defaultTasks << 'clean'
defaultTasks << 'build'