From c56b7a191d9d89ec42bfb2442e5e28bf75b0bf0d Mon Sep 17 00:00:00 2001 From: Emotion Date: Thu, 24 Nov 2022 22:22:34 +1300 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines-1.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 azure-pipelines-1.yml diff --git a/azure-pipelines-1.yml b/azure-pipelines-1.yml new file mode 100644 index 0000000..4c4b953 --- /dev/null +++ b/azure-pipelines-1.yml @@ -0,0 +1,23 @@ +# 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' + publishJUnitResults: false + javaHomeOption: 'JDKVersion' + jdkVersionOption: '1.8' + mavenVersionOption: 'Default' + mavenOptions: '-Xmx3072m' + mavenAuthenticateFeed: false + effectivePomSkip: false + sonarQubeRunAnalysis: false