From 2c58fa6dfd5425284aa4dac968a6f9fcf853a2e8 Mon Sep 17 00:00:00 2001 From: arkoppan <58860099+arkoppan@users.noreply.github.com> Date: Thu, 9 Apr 2020 12:32:57 -0500 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- Mavenpipelines.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Mavenpipelines.yml diff --git a/Mavenpipelines.yml b/Mavenpipelines.yml new file mode 100644 index 000000000..03897a827 --- /dev/null +++ b/Mavenpipelines.yml @@ -0,0 +1,22 @@ +# Maven +# Build your Java project and run tests with Apache Maven. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/java + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- task: Maven@3 + inputs: + mavenPomFile: 'pom.xml' + mavenOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.8' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package'