From e80dad826f23257c69fbba7d0cfb83dce4794bfa Mon Sep 17 00:00:00 2001 From: MUKUNTHANMS007 Date: Wed, 7 Jan 2026 11:45:17 +0530 Subject: [PATCH 1/2] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..62b1085cc --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,11 @@ +trigger: +- main + +pool: + vmImage: ubuntu-latest + +steps: +- task: Maven@4 + inputs: + mavenPomFile: 'pom.xml' + goals: 'package' From 3622a0708a3e53cb18e58778252b43e247caff07 Mon Sep 17 00:00:00 2001 From: MUKUNTHANMS007 Date: Wed, 21 Jan 2026 10:42:59 +0530 Subject: [PATCH 2/2] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 62b1085cc..e1850b8fd 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,3 +1,8 @@ +# 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: - main @@ -5,7 +10,13 @@ pool: vmImage: ubuntu-latest steps: -- task: Maven@4 +- task: Maven@3 inputs: mavenPomFile: 'pom.xml' - goals: 'package' + mavenOptions: '-Xmx3072m' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.11' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package' \ No newline at end of file