From 514f9663d3287fc4cad704b7946550f8a833e561 Mon Sep 17 00:00:00 2001 From: nagarjuna33 <115863146+nagarjuna33@users.noreply.github.com> Date: Mon, 13 Feb 2023 08:02:51 +0530 Subject: [PATCH] azure-pipelines.yml --- azure-pipelines.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..01d53529e --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,23 @@ +--- +pool: + name: "Azure Pipelines" + vmImage: ubuntu-latest +name: springpet +trigger: + main +stages: + - stage: stage1 + displayName: spring-stage1 + jobs: + - job: job1 + displayName: spring-job1 + steps: + - task: Maven@3 + inputs: + mavenPOMFile: 'pom.xml' + goals: 'package' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + javaHomeOption: 'JDKVersion' + jdkVersionOption: 1.11 +