Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .builder/pipelines/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Java CI with Maven
on: [push, manual]
push:
branches: [main]
jobs:
build:
image: maven:3.9-eclipse-temurin-17
cache:
key: m2-spring-boot-playground
paths: [.m2/repository]
steps:
- name: Checkout
run: git clone --depth 1 https://github.com/alexmond/spring-boot-playground.git .
- name: Build with Maven
run: mvn -B package --file pom.xml -Dmaven.repo.local=.m2/repository
Loading