Skip to content

Commit 5967d54

Browse files
committed
Update .cache
1 parent f534993 commit 5967d54

File tree

98 files changed

+3914
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+3914
-20
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
3+
<Metadata>
4+
<Identity Language="en-US" Id="cavisson-code-analyzer" Publisher="CavissonSystems" Version="1.0.4"/>
5+
<DisplayName>Cavisson Code Analyzer</DisplayName>
6+
<Description xml:space="preserve">Enables Azure DevOps pipelines to trigger Cavisson code analyzer tasks.</Description>
7+
<GalleryFlags>Public</GalleryFlags>
8+
<Categories>Azure Pipelines</Categories>
9+
<Icon>images/logo.png</Icon>
10+
</Metadata>
11+
<Dependencies/>
12+
<Installation>
13+
<InstallationTarget Id="Microsoft.VisualStudio.Services"/>
14+
</Installation>
15+
<Assets>
16+
<Asset Type="images/logo.png" d:Source="File" Path="images/logo.png" Addressable="true"/>
17+
<Asset Type="Microsoft.VisualStudio.Services.Icons.Default" d:Source="File" Path="images/logo.png" Addressable="true"/>
18+
<Asset Type="Microsoft.VisualStudio.Services.Content.Details" d:Source="File" Path="overview.md" Addressable="true"/>
19+
<Asset Type="Microsoft.VisualStudio.Services.Manifest" d:Source="File" Path="extension.vsomanifest" Addressable="true"/>
20+
</Assets>
21+
</PackageManifest>
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"manifestVersion": 1,
3+
"contributions": [
4+
{
5+
"id": "cavisson-code-analyzer-task",
6+
"type": "ms.vss-distributed-task.task",
7+
"targets": [
8+
"ms.vss-distributed-task.tasks"
9+
],
10+
"properties": {
11+
"name": "task"
12+
}
13+
},
14+
{
15+
"id": "cavisson-analyzer-service-connection",
16+
"type": "ms.vss-endpoint.service-endpoint-type",
17+
"targets": [
18+
"ms.vss-endpoint.endpoint-types"
19+
],
20+
"properties": {
21+
"name": "CavissonScannerConnection01",
22+
"displayName": "Cavisson Code Analyzer Service Connection",
23+
"description": "Connect to a Cavisson Netstorm instance using an API Token",
24+
"url": {
25+
"displayName": "Server URL",
26+
"helpText": "URL of the Cavisson instance (e.g., https://10.10.50.5:7899)"
27+
},
28+
"authenticationSchemes": [
29+
{
30+
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
31+
"inputDescriptors": [
32+
{
33+
"id": "apitoken",
34+
"name": "API Token",
35+
"description": "Enter the API Token to authenticate with Cavisson",
36+
"inputMode": "textbox",
37+
"isConfidential": true,
38+
"validation": {
39+
"isRequired": true
40+
}
41+
}
42+
]
43+
}
44+
]
45+
}
46+
},
47+
{
48+
"id": "codeanalyzer-service-connection",
49+
"type": "ms.vss-endpoint.service-endpoint-type",
50+
"targets": [
51+
"ms.vss-endpoint.endpoint-types"
52+
],
53+
"properties": {
54+
"name": "Codeanalyzerrr",
55+
"displayName": "Cloud Code Analyzer Service Connection",
56+
"description": "Connect to a Code Analyzer instance using an API Token",
57+
"url": {
58+
"displayName": "Server URL",
59+
"helpText": "URL of the Code Analyzer instance (e.g., https://codeanalyzer.example.com)"
60+
},
61+
"authenticationSchemes": [
62+
{
63+
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
64+
"inputDescriptors": [
65+
{
66+
"id": "apitoken",
67+
"name": "API Token",
68+
"description": "Enter the API Token to authenticate with Code Analyzer",
69+
"inputMode": "textbox",
70+
"isConfidential": true,
71+
"validation": {
72+
"isRequired": true
73+
}
74+
}
75+
]
76+
}
77+
],
78+
"inputDescriptors": [
79+
{
80+
"id": "organization",
81+
"name": "Organization",
82+
"description": "Enter the organization name if connecting to SonarCloud",
83+
"inputMode": "textbox",
84+
"isConfidential": false,
85+
"validation": {
86+
"isRequired": true
87+
}
88+
}
89+
]
90+
}
91+
}
92+
],
93+
"scopes": [],
94+
"contributionTypes": []
95+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"id": "2d7e3a9b-8c14-4f6d-a5b2-71e9c3f84d26",
3+
"name": "CavissonCodeAnalyzer",
4+
"version": {
5+
"Major": 1,
6+
"Minor": 0,
7+
"Patch": 0
8+
},
9+
"friendlyName": "Cavisson - Code Analyzer",
10+
"description": "Analyzes code for vulnerabilities using Cavisson Code Analyzer and reports results.",
11+
"preview": false,
12+
"deprecated": false,
13+
"author": "Cavisson"
14+
}
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"publisher": {
3+
"publisherId": "ca1f2b84-3484-4815-96c6-4ad85d79cacb",
4+
"publisherName": "CavissonSystems",
5+
"displayName": "Cavisson Systems",
6+
"flags": 2,
7+
"domain": "https://www.cavisson.com",
8+
"isDomainVerified": false
9+
},
10+
"extensionId": "4a1468ac-5aac-4d18-b816-49dc70bbbec4",
11+
"extensionName": "cavisson-code-analyzer",
12+
"displayName": "Cavisson Code Analyzer",
13+
"flags": 260,
14+
"lastUpdated": "2026-04-16T05:04:47.08Z",
15+
"publishedDate": "2026-04-16T04:50:44.25Z",
16+
"releaseDate": "2026-04-16T04:50:44.25Z",
17+
"shortDescription": "Enables Azure DevOps pipelines to trigger Cavisson code analyzer tasks.",
18+
"versions": [
19+
{
20+
"version": "1.0.4",
21+
"flags": 1,
22+
"lastUpdated": "2026-04-16T05:04:47.077Z",
23+
"files": [
24+
{
25+
"assetType": "Microsoft.VisualStudio.Services.VsixManifest",
26+
"source": "https://CavissonSystems.gallerycdn.vsassets.io/extensions/cavissonsystems/cavisson-code-analyzer/1.0.4/1776315613264/Microsoft.VisualStudio.Services.VsixManifest"
27+
},
28+
{
29+
"assetType": "Microsoft.VisualStudio.Services.VSIXPackage",
30+
"source": "https://CavissonSystems.gallerycdn.vsassets.io/extensions/cavissonsystems/cavisson-code-analyzer/1.0.4/1776315613264/Microsoft.VisualStudio.Services.VSIXPackage"
31+
}
32+
],
33+
"assetUri": "https://CavissonSystems.gallerycdn.vsassets.io/extensions/cavissonsystems/cavisson-code-analyzer/1.0.4/1776315613264",
34+
"fallbackAssetUri": "https://CavissonSystems.gallery.vsassets.io/_apis/public/gallery/publisher/CavissonSystems/extension/cavisson-code-analyzer/1.0.4/assetbyname"
35+
},
36+
{
37+
"version": "1.0.3",
38+
"flags": 0,
39+
"lastUpdated": "2026-04-16T04:50:44.98Z",
40+
"validationResultMessage": "{\"results\":[{\"status\":\"failure\",\"source\":\"PackageValidationStep\",\"reports\":[],\"message\":\"The Service Endpoint Contribution Microsoft.VisualStudio.Services.ServiceEndpointName.CAVISSONSCANNERCONNECTION0 with Name CAVISSONSCANNERCONNECTION0 already exists in the Marketplace. To publish the extension, please ensure you have a unique service endpoint name.\",\"details\":[]},{\"status\":\"success\",\"source\":\"SecretScanStep\",\"reports\":[],\"message\":\"\",\"details\":[]},{\"status\":\"success\",\"source\":\"SearchIndexPopulationStep\",\"reports\":[],\"message\":\"\",\"details\":[]}]}",
41+
"files": {
42+
"assetType": "Microsoft.VisualStudio.Services.VSIXPackage",
43+
"source": "https://CavissonSystems.gallerycdn.vsassets.io/extensions/cavissonsystems/cavisson-code-analyzer/1.0.3/1776315044334/Microsoft.VisualStudio.Services.VSIXPackage"
44+
},
45+
"assetUri": "https://CavissonSystems.gallerycdn.vsassets.io/extensions/cavissonsystems/cavisson-code-analyzer/1.0.3/1776315044334",
46+
"fallbackAssetUri": "https://CavissonSystems.gallery.vsassets.io/_apis/public/gallery/publisher/CavissonSystems/extension/cavisson-code-analyzer/1.0.3/assetbyname"
47+
}
48+
],
49+
"categories": [
50+
"Azure Pipelines"
51+
],
52+
"tags": [
53+
"Test task"
54+
],
55+
"deploymentType": 0
56+
}
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
3+
<Metadata>
4+
<Identity Language="en-US" Id="jfrog-azure-devops-extension" Version="2.12.9" Publisher="JFrog"/>
5+
<GalleryFlags>Public</GalleryFlags>
6+
<DisplayName>JFrog</DisplayName>
7+
<Description xml:space="preserve">Integrate your JFrog Platform with Visual Studio Team Services.</Description>
8+
<Categories>Azure Pipelines</Categories>
9+
<Tags>JFrog,Artifactory,Distribution,Xray,Artifact,Build,Release,Promote,Upload,Download,Repository</Tags>
10+
<Properties>
11+
<Property Id="Microsoft.VisualStudio.Services.Links.Getstarted" Value="https://jfrog.com/help/r/get-started-with-the-jfrog-platform/get-started"/>
12+
<Property Id="Microsoft.VisualStudio.Services.Links.Learn" Value="https://github.com/jfrog/jfrog-azure-devops-extension#readme"/>
13+
<Property Id="Microsoft.VisualStudio.Services.Links.Support" Value="https://www.jfrog.com/support"/>
14+
<Property Id="Microsoft.VisualStudio.Services.Links.Repository" Value="https://github.com/jfrog/jfrog-azure-devops-extension"/>
15+
<Property Id="Microsoft.VisualStudio.Services.Links.Privacypolicy" Value="https://jfrog.com/privacy-policy"/>
16+
<Property Id="Microsoft.VisualStudio.Services.Links.GitHub" Value="https://github.com/jfrog/jfrog-azure-devops-extension"/>
17+
<Property Id="Microsoft.VisualStudio.Services.Branding.Color" Value="#ffffff"/>
18+
<Property Id="Microsoft.VisualStudio.Services.Branding.Theme" Value="light"/>
19+
</Properties>
20+
<Icon>images/jfrog-logo-200.png</Icon>
21+
<License>LICENSE.md</License>
22+
</Metadata>
23+
<Dependencies/>
24+
<Installation>
25+
<InstallationTarget Id="Microsoft.VisualStudio.Services"/>
26+
</Installation>
27+
<Assets>
28+
<Asset Type="artifactory-build-info.html" d:Source="File" Path="artifactory-build-info.html" Addressable="true"/>
29+
<Asset Type="lib/VSS.SDK.js" d:Source="File" Path="lib/VSS.SDK.js" Addressable="true"/>
30+
<Asset Type="scripts/build-info.js" d:Source="File" Path="scripts/build-info.js" Addressable="true"/>
31+
<Asset Type="images/artifactory-build-info.png" d:Source="File" Path="images/artifactory-build-info.png" Addressable="true"/>
32+
<Asset Type="images/artifactory-xray-scan.png" d:Source="File" Path="images/artifactory-xray-scan.png" Addressable="true"/>
33+
<Asset Type="images/artifactory.png" d:Source="File" Path="images/artifactory.png" Addressable="true"/>
34+
<Asset Type="images/cli-v2-task.png" d:Source="File" Path="images/cli-v2-task.png" Addressable="true"/>
35+
<Asset Type="images/collect-issues.png" d:Source="File" Path="images/collect-issues.png" Addressable="true"/>
36+
<Asset Type="images/conan-task.png" d:Source="File" Path="images/conan-task.png" Addressable="true"/>
37+
<Asset Type="images/distribution.png" d:Source="File" Path="images/distribution.png" Addressable="true"/>
38+
<Asset Type="images/extension-install.png" d:Source="File" Path="images/extension-install.png" Addressable="true"/>
39+
<Asset Type="images/get-it-free.png" d:Source="File" Path="images/get-it-free.png" Addressable="true"/>
40+
<Asset Type="images/go-task.png" d:Source="File" Path="images/go-task.png" Addressable="true"/>
41+
<Asset Type="images/gradle-task.png" d:Source="File" Path="images/gradle-task.png" Addressable="true"/>
42+
<Asset Type="images/introduction.png" d:Source="File" Path="images/introduction.png" Addressable="true"/>
43+
<Asset Type="images/jfrog-logo-200.png" d:Source="File" Path="images/jfrog-logo-200.png" Addressable="true"/>
44+
<Asset Type="Microsoft.VisualStudio.Services.Icons.Default" d:Source="File" Path="images/jfrog-logo-200.png" Addressable="true"/>
45+
<Asset Type="images/jfrog.png" d:Source="File" Path="images/jfrog.png" Addressable="true"/>
46+
<Asset Type="images/marketplace/artifacts-source.png" d:Source="File" Path="images/marketplace/artifacts-source.png" Addressable="true"/>
47+
<Asset Type="images/marketplace/audit.png" d:Source="File" Path="images/marketplace/audit.png" Addressable="true"/>
48+
<Asset Type="images/marketplace/bi-in-artifactory.png" d:Source="File" Path="images/marketplace/bi-in-artifactory.png" Addressable="true"/>
49+
<Asset Type="images/marketplace/build-promotion.png" d:Source="File" Path="images/marketplace/build-promotion.png" Addressable="true"/>
50+
<Asset Type="images/marketplace/build-publish.png" d:Source="File" Path="images/marketplace/build-publish.png" Addressable="true"/>
51+
<Asset Type="images/marketplace/build-results.png" d:Source="File" Path="images/marketplace/build-results.png" Addressable="true"/>
52+
<Asset Type="images/marketplace/build-scan.png" d:Source="File" Path="images/marketplace/build-scan.png" Addressable="true"/>
53+
<Asset Type="images/marketplace/conan.png" d:Source="File" Path="images/marketplace/conan.png" Addressable="true"/>
54+
<Asset Type="images/marketplace/discard.png" d:Source="File" Path="images/marketplace/discard.png" Addressable="true"/>
55+
<Asset Type="images/marketplace/distribution.png" d:Source="File" Path="images/marketplace/distribution.png" Addressable="true"/>
56+
<Asset Type="images/marketplace/docker-pull.png" d:Source="File" Path="images/marketplace/docker-pull.png" Addressable="true"/>
57+
<Asset Type="images/marketplace/docker-scan.png" d:Source="File" Path="images/marketplace/docker-scan.png" Addressable="true"/>
58+
<Asset Type="images/marketplace/dotnet.png" d:Source="File" Path="images/marketplace/dotnet.png" Addressable="true"/>
59+
<Asset Type="images/marketplace/generic-download.png" d:Source="File" Path="images/marketplace/generic-download.png" Addressable="true"/>
60+
<Asset Type="images/marketplace/generic-upload.png" d:Source="File" Path="images/marketplace/generic-upload.png" Addressable="true"/>
61+
<Asset Type="images/marketplace/go.png" d:Source="File" Path="images/marketplace/go.png" Addressable="true"/>
62+
<Asset Type="images/marketplace/gradle.png" d:Source="File" Path="images/marketplace/gradle.png" Addressable="true"/>
63+
<Asset Type="images/marketplace/move-copy-delete.png" d:Source="File" Path="images/marketplace/move-copy-delete.png" Addressable="true"/>
64+
<Asset Type="images/marketplace/mvn.png" d:Source="File" Path="images/marketplace/mvn.png" Addressable="true"/>
65+
<Asset Type="images/marketplace/npm.png" d:Source="File" Path="images/marketplace/npm.png" Addressable="true"/>
66+
<Asset Type="images/marketplace/nuget.png" d:Source="File" Path="images/marketplace/nuget.png" Addressable="true"/>
67+
<Asset Type="images/marketplace/pip.png" d:Source="File" Path="images/marketplace/pip.png" Addressable="true"/>
68+
<Asset Type="images/marketplace/props.png" d:Source="File" Path="images/marketplace/props.png" Addressable="true"/>
69+
<Asset Type="images/marketplace/violations-table.png" d:Source="File" Path="images/marketplace/violations-table.png" Addressable="true"/>
70+
<Asset Type="images/maven-filter.png" d:Source="File" Path="images/maven-filter.png" Addressable="true"/>
71+
<Asset Type="images/maven-task.png" d:Source="File" Path="images/maven-task.png" Addressable="true"/>
72+
<Asset Type="images/npm-task.png" d:Source="File" Path="images/npm-task.png" Addressable="true"/>
73+
<Asset Type="images/nuget-task.png" d:Source="File" Path="images/nuget-task.png" Addressable="true"/>
74+
<Asset Type="images/oidc-integration.png" d:Source="File" Path="images/oidc-integration.png" Addressable="true"/>
75+
<Asset Type="images/oidc-json-mapping.png" d:Source="File" Path="images/oidc-json-mapping.png" Addressable="true"/>
76+
<Asset Type="images/oidc-service-connection.png" d:Source="File" Path="images/oidc-service-connection.png" Addressable="true"/>
77+
<Asset Type="images/organization-install.png" d:Source="File" Path="images/organization-install.png" Addressable="true"/>
78+
<Asset Type="images/pip-advanced.png" d:Source="File" Path="images/pip-advanced.png" Addressable="true"/>
79+
<Asset Type="images/pip-task.png" d:Source="File" Path="images/pip-task.png" Addressable="true"/>
80+
<Asset Type="images/promotion1.png" d:Source="File" Path="images/promotion1.png" Addressable="true"/>
81+
<Asset Type="images/promotion2.png" d:Source="File" Path="images/promotion2.png" Addressable="true"/>
82+
<Asset Type="images/promotion3.png" d:Source="File" Path="images/promotion3.png" Addressable="true"/>
83+
<Asset Type="images/promotion4.png" d:Source="File" Path="images/promotion4.png" Addressable="true"/>
84+
<Asset Type="images/promotion5.png" d:Source="File" Path="images/promotion5.png" Addressable="true"/>
85+
<Asset Type="images/promotion6.png" d:Source="File" Path="images/promotion6.png" Addressable="true"/>
86+
<Asset Type="images/release1.png" d:Source="File" Path="images/release1.png" Addressable="true"/>
87+
<Asset Type="images/release2.png" d:Source="File" Path="images/release2.png" Addressable="true"/>
88+
<Asset Type="images/release3.png" d:Source="File" Path="images/release3.png" Addressable="true"/>
89+
<Asset Type="images/service-artifactory.png" d:Source="File" Path="images/service-artifactory.png" Addressable="true"/>
90+
<Asset Type="images/service-distribution.png" d:Source="File" Path="images/service-distribution.png" Addressable="true"/>
91+
<Asset Type="images/service-platform.png" d:Source="File" Path="images/service-platform.png" Addressable="true"/>
92+
<Asset Type="images/service-xray.png" d:Source="File" Path="images/service-xray.png" Addressable="true"/>
93+
<Asset Type="images/tool-installer.png" d:Source="File" Path="images/tool-installer.png" Addressable="true"/>
94+
<Asset Type="images/xray-scan-results.png" d:Source="File" Path="images/xray-scan-results.png" Addressable="true"/>
95+
<Asset Type="images/xray.png" d:Source="File" Path="images/xray.png" Addressable="true"/>
96+
<Asset Type="Microsoft.VisualStudio.Services.Content.Details" d:Source="File" Path="overview.md" Addressable="true"/>
97+
<Asset Type="Microsoft.VisualStudio.Services.Content.License" d:Source="File" Path="LICENSE.md" Addressable="true"/>
98+
<Asset Type="Microsoft.VisualStudio.Services.Manifest" d:Source="File" Path="extension.vsomanifest" Addressable="true"/>
99+
</Assets>
100+
</PackageManifest>

0 commit comments

Comments
 (0)