From 14373206c417a220ee547a91bd725e161bcc5191 Mon Sep 17 00:00:00 2001 From: "SHAIK.SOHAIL" <121076079+shaiksohail11@users.noreply.github.com> Date: Mon, 6 Feb 2023 10:42:50 +0530 Subject: [PATCH] Add files via upload Added Azure pipelines --- azure-pipelines.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 azure-pipelines.yaml diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml new file mode 100644 index 000000000..f6d69c54e --- /dev/null +++ b/azure-pipelines.yaml @@ -0,0 +1,22 @@ +--- +pool: + name: "Azure Pipelines" + vmImage: "ubuntu-latest" + +trigger: + - main +stages: + - stage: Build + displayName: CI + + jobs: + - job: MavenJob + displayName: Maven + steps: + - task: Maven@3 + inputs: + mavenPOMFile: 'pom.xml' + publishJUnitResults: true + goals: 'package' + testResultsFiles: '**/surefire-reports/TEST-*.xml' + jdkVersionOption: '1.17'