Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users/keyoke/servicing #48

Merged
merged 11 commits into from
Jul 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Sonatype Nexus Repository artifact for Release Pipelines
This extension provides support for Nexus Maven Repositories when leveraging Release Pipelines, the initial version includes Release Pipeline Artifact support for Nexus Maven Repositories as well as providing Azure Pipelines tasks for downloading assets from Maven Repositories.

## Team Foundation Server 2018 Support
The extension which is published to the marketplace is supported for the Azure DevOps Server 2019 and Azure DevOps Service targets only. If you wish to install this extension on TFS 2018 please download the latest server 2018 VSIX package i.e. soft-cor.nexus-custom-release-artifact-server-2018-extension-[version].vsix from the [GitHub Releases](https://github.com/keyoke/NexusPipelineArtifact/releases).

## Usage
This extension requires you to first configure a service connection to connect to your Nexus Repository server. Once connected, you can link a source artifact from the a Nexus Maven Repository and use these artifacts in your Release Pipeline.

Expand Down
5 changes: 3 additions & 2 deletions vss-extension-server-2018.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
"id": "Microsoft.TeamFoundation.Server",
"version": "[16.0]"
}
],
"demands": [
"api-version/3.0"
"api-version/4.0"
],
"icons": {
"default": "icon-nexus-logo.png"
Expand Down
8 changes: 6 additions & 2 deletions vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,15 @@
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
"id": "Microsoft.VisualStudio.Services.Cloud"
},
{
"id": "Microsoft.TeamFoundation.Server",
"version": "[17.0,)"
}
],
"demands": [
"api-version/3.0"
"api-version/5.0"
],
"icons": {
"default": "icon-nexus-logo.png"
Expand Down