diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index afd10b7a..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,37 +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 - -strategy: - matrix: - linux: - imageName: 'ubuntu-latest' - mac: - imageName: 'macOS-latest' - windows: - imageName: 'windows-latest' - -pool: - vmImage: $(imageName) - -trigger: - - master - -steps: - - task: JavaToolInstaller@0 - inputs: - versionSpec: '11' - jdkArchitectureOption: 'x64' - jdkSourceOption: 'PreInstalled' - - - task: Maven@4 - inputs: - mavenPomFile: 'pom.xml' - mavenOptions: '-Xmx3072m -Dmaven.javadoc.skip=true' - publishJUnitResults: true - testResultsFiles: '**/surefire-reports/TEST-*.xml' - codeCoverageToolOption: 'JaCoCo' - goals: 'verify' - displayName: 'Build $(imageName)' -