-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
62 lines (54 loc) · 1.89 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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'maven-publish'
id 'org.springframework.boot' version '2.5.6'
id 'pmd'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.5.6'
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.6'
implementation 'org.springframework.boot:spring-boot-starter-validation:2.5.6'
implementation 'org.projectlombok:lombok:1.18.22'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
implementation 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
implementation 'org.javassist:javassist:3.28.0-GA'
implementation 'org.hibernate:hibernate-validator:5.2.4.Final'
implementation 'org.flywaydb:flyway-core:8.0.2'
implementation 'org.modelmapper:modelmapper:2.4.4'
implementation 'org.hibernate.validator:hibernate-validator:6.2.0.Final'
implementation 'com.univocity:univocity-parsers:2.8.4'
runtimeOnly 'org.springframework.boot:spring-boot-devtools:2.5.6'
runtimeOnly 'org.xerial:sqlite-jdbc:3.32.3.3'
runtimeOnly 'com.github.gwenn:sqlite-dialect:0.1.0'
testImplementation 'org.hamcrest:hamcrest-library:1.3'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.6'
}
test {
useJUnitPlatform()
}
group = 'co.fullstacklabs'
version = '0.0.1-SNAPSHOT'
description = 'assessment-cc-java-sr-01'
java.sourceCompatibility = JavaVersion.VERSION_1_8
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}