From 95e123119112cb138d09379ea21d717d0d6e7095 Mon Sep 17 00:00:00 2001 From: aberta Date: Mon, 16 Nov 2020 10:32:15 -0300 Subject: [PATCH] Remove Azure pipeline after start using GitHub Actions for building. --- azure-pipelines.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 68780ac7c..000000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,25 +0,0 @@ -# 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: - branches: - include: - - master - -pool: - vmImage: 'ubuntu-latest' - -steps: -- task: Maven@3 - inputs: - mavenPomFile: 'pom.xml' - javaHomeOption: 'JDKVersion' - jdkVersionOption: '1.11' - jdkArchitectureOption: 'x64' - publishJUnitResults: false - testResultsFiles: '**/surefire-reports/TEST-*.xml' - goals: 'package' - -