summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-03-15 12:48:29 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2020-03-16 11:13:16 +0100
commit84db379e6806b7c4603a9f86452ee3d8a1fd7e0b (patch)
tree7b5d5b4ae2dd0e952493211191f3ae6ab3f25a82
parent2ebeae10dc3fdef90a769c133251632d7cb9aec9 (diff)
Disable Quarkus Kubernetes processing.
In Quarkus 1.3.0.Final, Kubernetes processing causes the build to fail. As it was buggy before, this patch disables it for now. Change-Id: I9dd6a15a968846932f373598e50e1f2846679564
-rw-r--r--build.gradle2
-rw-r--r--pom.xml2
2 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 423604f..58a2f4b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,7 @@ dependencies {
implementation 'io.quarkus:quarkus-hibernate-orm-panache'
implementation 'io.quarkus:quarkus-hibernate-validator'
implementation 'io.quarkus:quarkus-jdbc-postgresql'
- implementation 'io.quarkus:quarkus-kubernetes'
+ //implementation 'io.quarkus:quarkus-kubernetes'
implementation 'io.quarkus:quarkus-mailer'
implementation 'io.quarkus:quarkus-oidc'
implementation 'io.quarkus:quarkus-resteasy'
diff --git a/pom.xml b/pom.xml
index a25b29b..b5faba7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -162,10 +162,12 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-postgresql</artifactId>
</dependency>
+ <!--
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-kubernetes</artifactId>
</dependency>
+ -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-mailer</artifactId>