-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
61 lines (54 loc) · 1.71 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
plugins {
id 'idea'
id 'java'
id 'maven-publish'
id "org.springframework.boot" version "2.2.4.RELEASE"
id 'jacoco'
// id "io.freefair.lombok" version "3.8.4"
}
repositories {
mavenLocal()
maven {
url = 'https://repo.maven.apache.org/maven2'
}
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.8'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '2.2.4.RELEASE'
compile 'org.liquibase:liquibase-core:3.6.3'
compile 'org.springframework.boot:spring-boot-starter-security:2.2.4.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-web:2.2.4.RELEASE'
compile 'org.apache.commons:commons-lang3:3.9'
compile 'org.projectlombok:lombok:1.16.16'
compile 'io.jsonwebtoken:jjwt:0.9.1'
runtime 'mysql:mysql-connector-java:5.1.42'
testCompile 'org.springframework.boot:spring-boot-starter-test:2.2.4.RELEASE'
testCompile 'org.springframework.security:spring-security-test:5.2.2.RELEASE'
testCompile 'junit:junit-dep:4.11'
testCompile 'org.mockito:mockito-core:3.0.0'
testCompile 'org.hamcrest:hamcrest-all:1.3'
testCompile 'com.github.npathai:hamcrest-optional:2.0.0'
testRuntime "com.h2database:h2:1.4.197"
}
group = 'org.churchsource'
version = '0.0.1-SNAPSHOT'
description = 'church-people'
sourceCompatibility = '1.8'
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}
check.dependsOn jacocoTestReport
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}