We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ba0c0c commit 66dfed7Copy full SHA for 66dfed7
buildspec.yml
@@ -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
9
+ - echo Nothing to do in the pre_build phase...
10
+ build:
11
12
+ - echo Build started on `date`
13
+ - mvn clean install -Dmaven.test.skip=true
14
+ post_build:
15
16
+ - echo Build completed on `date`
0 commit comments