diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..487ae1b --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +# Maven + +pool: + vmImage: 'Ubuntu 16.04' + +steps: +- task: Maven@3 + inputs: + mavenPomFile: 'pom.xml' + mavenOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.10' + jdkArchitectureOption: 'x64' + publishJUnitResults: false + testResultsFiles: '**/TEST-*.xml' + goals: 'package'