From bccb1705e00e18018e5cfd0d9a076574cd574536 Mon Sep 17 00:00:00 2001 From: praveenk1984 Date: Thu, 26 Dec 2024 20:36:58 +0530 Subject: [PATCH 1/5] Update README.md Status Badge Markdown --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f88d52f73..91d5a6cd3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ - +[![Build Status](https://dev.azure.com/karnatipraveenchowdary/Karnati/_apis/build/status%2FKarnati?branchName=main)](https://dev.azure.com/karnatipraveenchowdary/Karnati/_build/latest?definitionId=6&branchName=main) # Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a From 18c90cb5a5b53928c704716856578f29bc3fda7d Mon Sep 17 00:00:00 2001 From: praveenk1984 Date: Thu, 26 Dec 2024 20:47:01 +0530 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f88d52f73..87a3d72dc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ - +[![Build Status](https://dev.azure.com/karnatipraveenchowdary/Karnati/_apis/build/status%2Fpipelines-java-new?branchName=main)](https://dev.azure.com/karnatipraveenchowdary/Karnati/_build/latest?definitionId=7&branchName=main) # Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a From 984d6f8ac8d6c5041415255828bd2b47f7c5213f Mon Sep 17 00:00:00 2001 From: praveenk1984 Date: Wed, 17 Jun 2026 13:41:49 +0530 Subject: [PATCH 3/5] 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 000000000..e8f3d6f54 --- /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: +- main + +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' From cecdfbc2f3aa6a2e32e35ca3a03e1851634d3b78 Mon Sep 17 00:00:00 2001 From: praveenk1984 Date: Wed, 17 Jun 2026 13:51:28 +0530 Subject: [PATCH 4/5] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e8f3d6f54..99bb4582d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,13 +10,16 @@ pool: vmImage: ubuntu-latest steps: -- task: Maven@3 +- task: Maven@4 inputs: + azureSubscription: 'mymdp' mavenPomFile: 'pom.xml' - mavenOptions: '-Xmx3072m' - javaHomeOption: 'JDKVersion' - jdkVersionOption: '1.11' - jdkArchitectureOption: 'x64' publishJUnitResults: true testResultsFiles: '**/surefire-reports/TEST-*.xml' - goals: 'package' + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.11' + mavenVersionOption: 'Default' + mavenOptions: '-Xmx3072m' + mavenAuthenticateFeed: false + effectivePomSkip: false + sonarQubeRunAnalysis: false From 6e7071b3bde2b31f682f23b430071282ad251901 Mon Sep 17 00:00:00 2001 From: praveenk1984 Date: Wed, 17 Jun 2026 15:32:20 +0530 Subject: [PATCH 5/5] Update azure-pipelines.yml --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 99bb4582d..e93a1db4d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,7 +2,7 @@ # 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 - +# test for checking trigger: - main