From 947a740f86015e3c6071a6d6069917eff10ba496 Mon Sep 17 00:00:00 2001 From: Kiranteja623 <100252762+Kiranteja623@users.noreply.github.com> Date: Tue, 14 Feb 2023 20:03:52 +0530 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..3f3ecca6f --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +--- +pool: + name: azurepipeline + Vmimage: ubuntu-latest +trigger: + - main +jobs: + - job: package + displayName: build the package + steps: + - task: Maven@3 + inputs: + mavenPOMFile: 'pom.xml' + goals: 'package' + testResultsFiles: '**/surefire-reports/TEST-*.xml' + JDKVersion: '1.17'