We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23fa663 commit fab166dCopy full SHA for fab166d
src/main/java/io/csviri/operator/resourceglue/Main.java
@@ -0,0 +1,13 @@
1
+package io.csviri.operator.resourceglue;
2
+
3
+import io.quarkus.runtime.Quarkus;
4
+import io.quarkus.runtime.annotations.QuarkusMain;
5
6
+// this is just to easier to run the controller because of the bug:
7
+// https://github.com/quarkusio/quarkus/issues/39833
8
+@QuarkusMain
9
+public class Main {
10
+ public static void main(String... args) {
11
+ Quarkus.run(args);
12
+ }
13
+}
src/main/java/io/csviri/operator/resourceglue/Runner.java
0 commit comments