I have published my project .jar to artifact registry. I'm not sure how to refer to it, to use as a dependency in another project (with gradle). Thank you in advance.
As described in this page, you have to register your project through this form and then to configurer your Gradle repositories as described
Related
I am working in a GitLab C++ project and I am trying to have a automatic documentation generation on the code using Doxygen. I don't really know how to approach the problem.
Can I somehow include it in CMake to have a updated documentation in the project everytime someone builds it?
Or would it be better to have the server generate a documentation when someone pushes his Code?
Thanks for your help!
Consider publishing the generated documentation on a GitLab Pages site (https://docs.gitlab.com/ee/user/project/pages/) You can then link to it from your Wiki to make it easy to find.
GitLab Wiki is stored in a separate Git repository (https://docs.gitlab.com/ee/user/project/wiki/) so that's why I think it would be cleaner to create a Pages site rather than to update the Wiki Git repo from the main Git repo.
Yes, I think it is better to have a separate server build the documentation whenever someone pushes. If you have a Travis-CI account, you could configure an automatic deployment of your Doxygen documentation to the GitLab Wiki.
See here a link to a Gist example for GitHub, but should be expandable to GitLab:
https://gist.github.com/vidavidorra/548ffbcdae99d752da02
I can follow the tutorial to create project by gcloud deployment-manager command and template files.
My question is how to use deployment manager API to do the same thing. I found the insert method API in the document, but when I use this API to create project, I meet the error: Error 404: Failed to find project test-site-301, notFound"
How do I specify the project ID before the project has been created? Or I should use other API for project creation?
Thanks
Update. 2018.01.15
I think I found the answer. When creating a new project by deployment manager API, the project parameter should be the project which manages the deployment (i.e. host project) NOT the project which will be created.
For project creation you should use Resource Manager API with projects.create method.
Review documentation here where different ways of creating project are described.
I need some help to determine why my VSTS build agent doesn't create an artifact in the drop folder
I have a solution that contains a website project (not a web application) and a logic project that i'm trying to build the website via VSTS. The build complete's correctly when i reference the solution as part of the "Process" step but nothing is added to the drop folder for the release process.
I have modified my build arguments to look for a publish profile that has been saved to the app_data/PublishProfiles (called vstsbuild) on the website project. The website doesn't have a project file but it does have a website.publishproj file at the root of the website.
Any idea why it won't publish an artifact would be helpful
VSTS Publish Logs
Is it possible to upload artifacts in a specific folder structure like :/common/schemas/sample/
For instance allow an xsd that is uploaded to conform to a specific location for when it is downloaded and used in a different project it can follow the same folder naming and location standard.
For instance I want sample.xsd to be available under:
common/schemas/sample/sample.xsd
I want this xsd to be downloaded in this structure by default without having to create this.Thanks.
I hope you are using WSO2 Governance Registry 5.x release. There you can change the artifact storage patch using the RXT configuration. More information can be found via "Customizing the Storage Path for Configurable Governance Artifacts" doc.
My requirement is to migrate issues from Redmine to GitHub issue tracker.
I exported Redmine issues to a csv file. Using GitHub issue api I am able to create issues in github along with labels.
But I also need to attach file while creating issue, using GitHub REST apis.
Is it possible to attach files while creating issue in github via API?
If anybody knows the solution for this please let me know.
No, it's not possible to attach files to issues via the GitHub API.