Initial commit: Hello Spring Boot

This commit is contained in:
2026-02-15 01:59:12 +08:00
commit b33a746d7f
6 changed files with 100 additions and 0 deletions

14
.drone.yml Normal file
View File

@@ -0,0 +1,14 @@
kind: pipeline
type: docker
name: build
steps:
- name: build
image: maven:3.9-eclipse-temurin-21
commands:
- mvn clean package -DskipTests
- name: test
image: maven:3.9-eclipse-temurin-21
commands:
- mvn test