forked from opstree/spring3hibernate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Maven package Java project Web App to Linux on Azure | ||
# Build your Java project and deploy it to Azure as a Linux web app | ||
# Add steps that analyze code, save build artifacts, deploy, and more: | ||
# https://docs.microsoft.com/azure/devops/pipelines/languages/java | ||
|
||
trigger: | ||
- master | ||
|
||
variables: | ||
|
||
# Azure Resource Manager connection created during pipeline creation | ||
azureSubscription: '9fdbda6c-7b86-4b7c-80b6-04d57d8c7d26' | ||
|
||
# Web app name | ||
webAppName: 'spring3hibernateapp' | ||
|
||
# Environment name | ||
environmentName: '' | ||
|
||
# Agent VM image name | ||
vmImageName: 'local' | ||
|
||
stages: | ||
- stage: Build | ||
displayName: Build stage | ||
jobs: | ||
- job: MavenPackageAndPublishArtifacts | ||
displayName: Maven Package and Publish Artifacts | ||
pool: | ||
vmImage: $(vmImageName) | ||
|
||
steps: | ||
- task: Maven@3 | ||
displayName: 'Maven Package' | ||
inputs: | ||
mavenPomFile: 'pom.xml' | ||
|
||
- task: CopyFiles@2 | ||
displayName: 'Copy Files to artifact staging directory' | ||
inputs: | ||
SourceFolder: '$(System.DefaultWorkingDirectory)' | ||
Contents: '**/target/*.?(war|jar)' | ||
TargetFolder: $(Build.ArtifactStagingDirectory) | ||
|
||
- upload: $(Build.ArtifactStagingDirectory) | ||
artifact: drop | ||
|
||
- stage: Deploy | ||
displayName: Deploy stage | ||
dependsOn: Build | ||
condition: succeeded() | ||
jobs: | ||
- deployment: DeployLinuxWebApp | ||
displayName: Deploy Linux Web App | ||
environment: $(environmentName) | ||
pool: | ||
vmImage: $(vmImageName) | ||
strategy: | ||
runOnce: | ||
deploy: | ||
steps: | ||
- task: AzureWebApp@1 | ||
displayName: 'Azure Web App Deploy: ' | ||
inputs: | ||
azureSubscription: $(azureSubscription) | ||
appType: webAppLinux | ||
appName: $(webAppName) | ||
package: '$(Pipeline.Workspace)/drop/**/target/*.?(war|jar)' |