Initial commit
This commit is contained in:
commit
dc944583ac
8 changed files with 107 additions and 0 deletions
19
.woodpecker/maven.yaml
Normal file
19
.woodpecker/maven.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
variables:
|
||||
&maven_image maven:3.9.6-eclipse-temurin-21-alpine
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: *maven_image
|
||||
commands:
|
||||
- mvn -B clean install -DskipTests -Dmaven.test.skip
|
||||
- name: test
|
||||
image: *maven_image
|
||||
commands:
|
||||
- mvn -B verify
|
||||
- name: deploy
|
||||
image: *maven_image
|
||||
commands:
|
||||
- mvn -B jar:jar deploy:deploy
|
||||
secrets: [ reposilite_user, reposilite_token ]
|
||||
when:
|
||||
branch: [ master ]
|
Loading…
Add table
Add a link
Reference in a new issue