feat: NCS-37 add backcore Quarkus module skeleton

Introduces the backcore Quarkus REST module with build configuration,
application.yml, and a smoke test confirming Quarkus boots successfully.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
LQ63
2026-04-13 15:36:14 +02:00
parent ec2ab2f365
commit 15904d4545
5 changed files with 123 additions and 1 deletions
@@ -0,0 +1,3 @@
quarkus:
http:
port: 8080
@@ -0,0 +1,11 @@
package de.nowchess.backcore
import io.quarkus.test.junit.QuarkusTest
import org.junit.jupiter.api.Test
@QuarkusTest
class BackcoreStartupTest:
@Test
def applicationStarts(): Unit =
// If we get here the Quarkus container started successfully
()