Last active
November 4, 2019 19:47
-
-
Save MarcusFelling/a93bc07e163df2b6ad4ee6ecd931d2c9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"manifestVersion": 1, | |
"id": "pipelinedecorator", | |
"name": "SonarQube Decorator Example", | |
"version": "1.0.2", | |
"publisher": "MarcusFelling-Blog", | |
"targets": [ | |
{ | |
"id": "Microsoft.VisualStudio.Services" | |
} | |
], | |
"description": "SonarQube Decorator Example", | |
"categories": [ | |
"Azure Pipelines" | |
], | |
"icons": { | |
"default": "images/extension-icon.png" | |
}, | |
"files": [ | |
{ | |
"path": "SonarQubeDecoratorPrepare.yml", | |
"addressable": true, | |
"contentType": "text/plain" | |
}, | |
{ | |
"path": "SonarQubeDecoratorAnalysis.yml", | |
"addressable": true, | |
"contentType": "text/plain" | |
} | |
], | |
"contributions": [ | |
{ | |
"id": "sonarqube-prepare", | |
"type": "ms.azure-pipelines.pipeline-decorator", | |
"targets": [ | |
"ms.azure-pipelines-agent-job.pre-job-tasks" | |
], | |
"properties": { | |
"template": "SonarQubeDecoratorPrepare.yml" | |
} | |
}, | |
{ | |
"id": "sonarqube-analysis", | |
"type": "ms.azure-pipelines.pipeline-decorator", | |
"targets": [ | |
"ms.azure-pipelines-agent-job.post-job-tasks" | |
], | |
"properties": { | |
"template": "SonarQubeDecoratorAnalysis.yml" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment