Advertisement
Javi

AWS: Codebuild maven spec

Feb 6th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. version: 0.2
  2.  
  3. phases:
  4. build:
  5. commands:
  6. - echo Build started on `date`
  7. - mvn test
  8. post_build:
  9. commands:
  10. - echo Build completed on `date`
  11. - mvn package
  12. artifacts:
  13. files:
  14. - target/my-app-1.0-SNAPSHOT.jar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement