test
Форк от lirfrnk/test
/
buildspec.yaml
18 строк · 320.0 Байт
1version: 0.2
2
3phases:
4install:
5runtime-versions:
6java: corretto8
7commands:
8- apt update -y
9build:
10commands:
11- mvn clean package
12- mkdir output
13- cp target/*.war output/books.war
14artifacts:
15files:
16- 'output/*.war'
17- appspec.yaml
18- scripts/*
19