diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..640a28578 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: 'vs2017-win2016' + +steps: +- script: | + echo Starting the build + mvn package + displayName: 'Build with Maven' \ No newline at end of file