diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..e8a1c6e1f --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,17 @@ +trigger: + - main + +pool: + vmImage: 'ubuntu-latest' + +steps: +- task: Maven@3 + inputs: + mavenPomFile: 'pom.xml' + mavenOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.8' + jdkArchitectureOption: 'x64' + publishJUnitResults: false + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package' \ No newline at end of file