From bc3a1b380fc55e5a84b49a66abcd383fb5237a85 Mon Sep 17 00:00:00 2001 From: gandhi2648 <140733214+gandhi2648@users.noreply.github.com> Date: Sat, 9 Aug 2025 15:47:02 +0530 Subject: [PATCH 1/2] Update pom.xml java changes --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eccd206883..2365eefe03 100644 --- a/pom.xml +++ b/pom.xml @@ -34,8 +34,8 @@ maven-compiler-plugin - 1.6 - 1.6 + 21 + 21 From bf9da7f6229807e1d456c688df2d525a4a54bda7 Mon Sep 17 00:00:00 2001 From: gandhi2648 <140733214+gandhi2648@users.noreply.github.com> Date: Tue, 10 Feb 2026 22:50:12 +0530 Subject: [PATCH 2/2] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..5c22fc6549 --- /dev/null +++ b/azure-pipelines.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.11' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package'