summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-proto/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-web/opendc-web-proto/build.gradle.kts')
-rw-r--r--opendc-web/opendc-web-proto/build.gradle.kts9
1 files changed, 3 insertions, 6 deletions
diff --git a/opendc-web/opendc-web-proto/build.gradle.kts b/opendc-web/opendc-web-proto/build.gradle.kts
index 9b307655..bbec8bd0 100644
--- a/opendc-web/opendc-web-proto/build.gradle.kts
+++ b/opendc-web/opendc-web-proto/build.gradle.kts
@@ -24,16 +24,13 @@ description = "Web communication protocol for OpenDC"
// Build configuration
plugins {
- `kotlin-library-conventions`
- id("org.kordamp.gradle.jandex") // Necessary for Quarkus to process annotations
+ `java-library-conventions`
}
dependencies {
implementation(libs.jackson.annotations)
implementation(libs.jakarta.validation)
+ implementation(libs.jakarta.ws.rs.api)
+ implementation(libs.microprofile.rest.client.api)
implementation(libs.microprofile.openapi.api)
}
-
-tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
- kotlinOptions.javaParameters = true
-}