Set up project structure
Some checks failed
Publish Snapshot / call-publish (push) Has been cancelled

This commit is contained in:
2025-09-09 10:01:14 +02:00
commit b0e1803783
21 changed files with 709 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
spring:
application:
name: "%APP_NAME%"
version: "%APP_VERSION%"
build:
time: "%APP_BUILD_TIME%"
os:
name: "%APP_BUILD_OS_NAME%"
version: "%APP_BUILD_OS_VERSION%"
profiles:
active: develop
management:
endpoint:
health:
access: read_only
show-details: always
info:
access: read_only
endpoints:
access:
default: none
web:
exposure:
include: "health,info"
---
###########################
### Develop environment ###
###########################
spring:
config:
activate:
on-profile: develop
---
##########################
### Docker environment ###
##########################
spring:
config:
activate:
on-profile: docker
---
##############################
### Kubernetes environment ###
##############################
spring:
config:
activate:
on-profile: kubernetes