diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..656233f --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,24 @@ +# Maven +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' + +- task: dependency-check-build-task@6 + inputs: + projectName: 'Dependency-Check' + scanPath: 'src/main' + format: 'HTML'