-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
63 lines (51 loc) · 1.93 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
plugins {
id 'java'
id 'io.quarkus'
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
implementation 'io.quarkus:quarkus-smallrye-openapi'
implementation 'io.quarkus:quarkus-rest-jackson'
implementation 'io.quarkus:quarkus-config-yaml'
implementation 'io.quarkus:quarkus-jdbc-postgresql'
implementation 'io.quarkus:quarkus-hibernate-orm-rest-data-panache'
implementation 'io.quarkus:quarkus-arc' // For @ApplicationScoped
implementation 'io.quarkus:quarkus-smallrye-jwt' // For JWT generation and validation
implementation 'io.quarkus:quarkus-security'
implementation 'org.mindrot:jbcrypt:0.4'
implementation 'io.quarkus:quarkus-smallrye-openapi:3.17.4'
// Utility dependencies
implementation 'org.apache.commons:commons-text:1.12.0'
implementation 'org.atteo:evo-inflector:1.3'
implementation 'software.amazon.smithy:smithy-utils:1.52.1'
// Lombok and MapStruct
compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'
implementation 'org.mapstruct:mapstruct:1.6.3'
annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.3'
// Testing dependencies
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'io.rest-assured:rest-assured'
testCompileOnly 'org.projectlombok:lombok:1.18.34'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'
}
group 'org.example'
version '1.0.0-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
compileJava {
options.encoding = 'UTF-8'
}
test {
systemProperty "java.util.logging.manager", "org.jboss.logmanager.LogManager"
}
compileTestJava {
options.encoding = 'UTF-8'
}