From fc1933ab24fb6d184664dbb02980c67b2262eec5 Mon Sep 17 00:00:00 2001 From: Yusra23 <48834585+Yusra23@users.noreply.github.com> Date: Wed, 10 Feb 2021 09:13:37 +0530 Subject: [PATCH 1/3] Update index.jsp --- webapp/src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp index 4b4abb0..2a5e1ff 100644 --- a/webapp/src/main/webapp/index.jsp +++ b/webapp/src/main/webapp/index.jsp @@ -1,3 +1,3 @@ -

Vanakkam !! +

Vanakkam All !!

WAR file deployment

Thank you

From 0a7d13671ed00e4920149754607f81db8d231237 Mon Sep 17 00:00:00 2001 From: Yusra23 <48834585+Yusra23@users.noreply.github.com> Date: Wed, 10 Feb 2021 11:36:29 +0530 Subject: [PATCH 2/3] Update index.jsp --- webapp/src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp index 2a5e1ff..a0698a6 100644 --- a/webapp/src/main/webapp/index.jsp +++ b/webapp/src/main/webapp/index.jsp @@ -1,3 +1,3 @@ -

Vanakkam All !! +

Vanakkam Guys !!

WAR file deployment

Thank you

From 50d7bfd628ac398a713597bc99feff5451a436d3 Mon Sep 17 00:00:00 2001 From: Yusra23 <48834585+Yusra23@users.noreply.github.com> Date: Tue, 9 Nov 2021 18:53:15 +0530 Subject: [PATCH 3/3] 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 0000000..34edff5 --- /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.8' + jdkArchitectureOption: 'x64' + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' + goals: 'package'