Skip to content

Commit

Permalink
Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
TSchmiedlechner committed May 8, 2020
1 parent bc50bd6 commit d49524c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
trigger:
- master

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

- task: CopyFiles@2
inputs:
SourceFolder: 'target'
Contents: '*-jar-with-dependencies.jar'
TargetFolder: '$(build.artifactstagingdirectory)'

0 comments on commit d49524c

Please sign in to comment.