Skip to content

Instantly share code, notes, and snippets.

@bitsmuggler
Last active November 13, 2016 10:47
Show Gist options
  • Save bitsmuggler/ed7a86ed57b6774092aa01ae557fc1e7 to your computer and use it in GitHub Desktop.
Save bitsmuggler/ed7a86ed57b6774092aa01ae557fc1e7 to your computer and use it in GitHub Desktop.
Beispielhaftes bitbucket-pipelines
This is a sample build configuration for Maven.
# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: paroos/maven-nodejs-bower-grunt-npmresolver-ts-sass
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- cd adhook.web/src/main/webapp/client
- npm install
- bower install --allow-root
- typings install
- grunt build
- cd ../../../../../adhook.pom
- mvn clean install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment