-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
78 lines (67 loc) · 2.64 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
67
68
69
70
71
72
73
74
75
76
77
78
plugins {
id 'java'
id 'org.springframework.boot' version '2.7.13'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
id 'org.openapi.generator' version '5.2.0'
}
group = 'com.edunavajas'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '1.8'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
tasks.named('openApiGenerate') {
generatorName = 'spring'
inputSpec = "${projectDir}/src/main/resources/openapi/course-management-Api.yml"
apiPackage = 'com.edunavajas.coursemanagement.openapi.web.rest'
modelPackage = 'com.edunavajas.coursemanagement.openapi.web.rest.dtos'
configOptions = [
dateLibrary : 'java8',
interfaceOnly : 'true',
skipDefaultInterface : 'true',
additionalModelTypeAnnotations: '@lombok.AllArgsConstructor @lombok.Builder @lombok.NoArgsConstructor'
]
}
compileJava.dependsOn tasks.named('openApiGenerate')
sourceSets {
main.java.srcDirs += 'build/generate-resources/main/src/main/java'
}
dependencies {
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
implementation 'org.openapitools:jackson-databind-nullable:0.2.1'
implementation 'org.mapstruct:mapstruct:1.4.2.Final'
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8'
testImplementation 'junit:junit:4.13.1'
testImplementation 'junit:junit:4.13.1'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.2'
implementation 'io.micrometer:micrometer-core:1.7.4'
implementation 'org.zalando:problem-spring-web:0.26.0'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final'
///
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.liquibase:liquibase-core'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'org.postgresql:postgresql'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}
tasks.named('test') {
useJUnitPlatform()
}
compileJava {
options.annotationProcessorPath = configurations.annotationProcessor
}