mirror of
https://github.com/trainerlord/WorldSystem.git
synced 2025-01-21 21:01:53 +01:00
15 lines
509 B
YAML
15 lines
509 B
YAML
# This is a sample build configuration for Java (Maven).
|
|
# Check our guides at https://confluence.atlassian.com/x/zd-5Mw for more examples.
|
|
# Only use spaces to indent your .yml configuration.
|
|
# -----
|
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
|
image: maven:3.3.9
|
|
|
|
pipelines:
|
|
default:
|
|
- step:
|
|
caches:
|
|
- maven
|
|
script: # Modify the commands below to build your repository.
|
|
- mvn -B verify # -B batch mode makes Maven less verbose
|