Skip to content

Commit 66dfed7

Browse files
committed
add buildspec file
1 parent 0ba0c0c commit 66dfed7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

buildspec.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 0.2
2+
# https://docs.aws.amazon.com/codebuild/latest/userguide/getting-started.html
3+
phases:
4+
install:
5+
commands:
6+
- echo Nothing to do in the install phase...
7+
pre_build:
8+
commands:
9+
- echo Nothing to do in the pre_build phase...
10+
build:
11+
commands:
12+
- echo Build started on `date`
13+
- mvn clean install -Dmaven.test.skip=true
14+
post_build:
15+
commands:
16+
- echo Build completed on `date`

0 commit comments

Comments
 (0)