-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
61 lines (54 loc) · 2.2 KB
/
build.gradle
File metadata and controls
61 lines (54 loc) · 2.2 KB
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 'org.springframework.boot' version '2.5.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'javax.validation:validation-api:2.0.1.Final'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.modelmapper:modelmapper:2.4.4'
runtimeOnly 'mysql:mysql-connector-java'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.poi:poi-ooxml:5.0.0'
implementation 'commons-net:commons-net:3.6'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.modelmapper:modelmapper:2.4.4'
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.springframework.boot:spring-boot-starter-batch:2.5.4'
implementation 'com.google.code.gson:gson:2.8.6'
implementation "com.googlecode.json-simple:json-simple:1.1.1"
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.12.3'
implementation "io.springfox:springfox-boot-starter:3.0.0"
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
}
//dependencies {
// implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// implementation 'org.springframework.boot:spring-boot-starter-web'
// compileOnly 'org.projectlombok:lombok'
// runtimeOnly 'mysql:mysql-connector-java'
// annotationProcessor 'org.projectlombok:lombok'
// testImplementation 'org.springframework.boot:spring-boot-starter-test'
//
//}
//
//tasks.named('test') {
// useJUnitPlatform()
//}