Compare commits

...

2 Commits

Author SHA1 Message Date
de3e93cc0a test
All checks were successful
Gradle Build on PR / call-gradle-build (pull_request) Successful in 2m51s
2025-09-15 19:54:08 +02:00
c135fc90d0 setup 2025-09-15 19:53:47 +02:00
4 changed files with 17 additions and 2 deletions

View File

@@ -11,4 +11,5 @@ jobs:
uses: aura-ascend/common-workflows/.gitea/workflows/gradle-build.yaml@master uses: aura-ascend/common-workflows/.gitea/workflows/gradle-build.yaml@master
with: with:
JAVA_VERSION: 17 JAVA_VERSION: 17
BUILD_OPTION: -x testIntegration
secrets: inherit secrets: inherit

View File

@@ -22,4 +22,4 @@ dependencies {
} }
group = "ltd.lulz" group = "ltd.lulz"
description = "service template" description = "device data service"

View File

@@ -34,4 +34,4 @@ pluginManagement.repositories {
gradlePluginPortal() gradlePluginPortal()
} }
rootProject.name = "service" rootProject.name = "device-data"

View File

@@ -0,0 +1,14 @@
package ltd.lulz.controller
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RestController
import reactor.core.publisher.Mono
@RestController
@RequestMapping("/")
class HomeController {
@GetMapping
fun home(): Mono<String> = Mono.just("Hello World")
}