How to take artifactory package builds details thru api. I have only the artifact(package), with this i need to find the builds details which is available under in builds tab...
Please help...
If you mean 'Build Info' then you can use the get Build Info REST API:
https://www.jfrog.com/confluence/display/RTF/Artifactory+REST+API#ArtifactoryRESTAPI-BuildInfo
Related
I want to set up a new vue storefront project and I've got this error. I don't know why this is happening, can someone help out in this situation?
command: npx #vue-storefront/cli init
? What's your project name? smso
? Choose integration Commercetools
ERROR VSF Unable to get integration template from git repository
Did you connect your frontend application with a commercetools project yet?
You can register for a free trial here: https://commercetools.com/free-trial
And the following documentation describes how to create a project:
https://docs.commercetools.com/merchant-center/projects#create-a-project
So basically just register with your Merchant Center user and then click your initials in the upper right hand corner to create an organisation, a team as well as a project.
You might be running the command vsf init <project_name> in the wrong directory. It happened to me when I was following along this URL. Compare the below two print screens:
The error I got:
The right way to do it:
The commercetools integration is an enterprise solution, so the one in the CLI is a mockup just for knowledge sharing on how to build integrations.
You can check our integrations at https://docs.vuestorefront.io/v2/integrations/
I am having a scenario where in I need to migrate the artifacts from HP ALM to VSTS for test management. I know about the ALM API and have worked with that before for exporting defects, and test cases but I am not aware of any such things for VSTS ( am very new with it) and want to create a task and then create a bug with the help of the adapter code and move the details from alm to vsts.
Can anyone please help me get the VSTS API, or some sample adapters based on which I can start coding for the VSTS API?
N.B: I tried finding it over google but no luck till now.
Thanks in advance.
You can try to use OpsHub tool.
Another tool: Microsoft Visual Studio Online Integration
Regarding API, you can try to use VSTS/TFS sdk: Microsoft Team Foundation Server Extended Client. You can check the source code of vstssync migrator (Ove mentioned)
Another option is vstssync migrator created by mrhinsh
https://github.com/nkdAgility/vsts-sync-migration
There is the code to get you started with your adapter.
I want virtocommerce in my own local repository.
storefront is a solution that will configure it according to the following link:
Storefront Source Code Getting Started
And it works.
But I want to have a solution For platforms and modules,
Like the link below:
vc-integrations
But I need the platform and modules to be connected to the github for the latest changes.
I've studied the link below:
Source Code Getting Started
but I do not understand how should I configure for my goals (one solution for platfrom and modules and fork, clone ,upstream for all for get latest versions of them)
We've used to have a single repository and single solution for Virto Commerce Manager and modules (vc-integrations). It was difficult to maintain and release often. That's why the single repository was split into many "1 module per repository" pieces.
We consider that in most cases having only Virto Commerce Manager configured should be sufficient. What's your scenario? Check "Manual module installation from source code" section in Source Code Getting Started to get started.
I am trying to use the nexus API, in order to retrieve a maven artifact.
The problem is that I want in a first step to propose the user to chose the version number. To do so, I thought I could use the REST API, but regarding the documentation, it seems that it is not possible.
Any idea?
You need to use the alternative REST API provided by the Nexus Indexer Lucene Plugin
The following example retrieves details of the available log4j artifacts:
https://repository.sonatype.org/service/local/lucene/search?g=log4j&a=log4j
I am trying to create a custom task for MSBuild so that it will send an email to the users that sais that a new version is up on the test server.
I go the email part done, what i would like to do is add the work items that are included in this build.
I tried the MSBuild extention (used to send the email) but the feature to get that info is not supporte don TFS 2005 wich is what i am using and cannot upgrade.
I was trying to use BuildStore.GetWorkItemsForBuild but i need a builduri which i cannot find a way to get.
The setup is like this, the steps to compile, build and deploy are called from a batch file as diffrent options. At the end of the deploy option, the email is sent.
Anyone can help me on this?
It's feasible but it seems your'e trying to stretch MSBuild functionality for tasks that related to build management.
Consider a solution like TeamCity that wraps for you all the build processes and manage notifications (i.e. when build has succeed or failed). It has out-of-the-box support for MSBuild.