-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
60 lines (50 loc) · 1.87 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
plugins {
id 'java'
id 'io.quarkus'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'io.quarkus:quarkus-container-image-docker'
implementation 'io.quarkus:quarkus-amazon-lambda-http'
implementation 'io.quarkus:quarkus-rest-client'
implementation 'io.quarkus:quarkus-kubernetes'
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
implementation 'io.quarkus:quarkus-resteasy'
implementation 'io.quarkus:quarkus-spring-data-jpa'
implementation 'io.quarkus:quarkus-jdbc-h2'
implementation 'org.jboss.resteasy:resteasy-jackson2-provider:3.0.19.Final'
implementation 'com.h2database:h2:1.4.199'
implementation 'io.quarkus:quarkus-smallrye-jwt'
implementation 'io.quarkus:quarkus-resteasy-jsonb'
implementation 'io.quarkus:quarkus-smallrye-openapi'
implementation 'io.quarkus:quarkus-smallrye-health'
compileOnly 'org.projectlombok:lombok:1.18.12'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testCompileOnly 'org.projectlombok:lombok:1.18.12'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'io.rest-assured:rest-assured'
testImplementation 'io.quarkus:quarkus-test-h2'
testImplementation 'io.quarkus:quarkus-junit5-mockito'
}
group 'com.quarkus'
version '1.0.0-SNAPSHOT'
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
}
compileTestJava {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
if (project.hasProperty("awsLambdaEnabled") && project.property("awsLambdaEnabled") != "true") {
configurations {
runtime.exclude group: 'io.quarkus', module: 'quarkus-amazon-lambda-http'
}
}