artifacts

How to publish artifacts in Travis CI?

会有一股神秘感。 提交于 2020-01-09 08:37:06
问题 I would like to use Travis CI for my open-source project. The issue that Travis doesn't provide any ways to publish produced artifacts (though, they have this in their future plans). What are workarounds to publish/upload artifacts somewhere? I'm allowed to execute any scripts on a CI machine. Simple upload will work, but there is security issue: anyone will be able to upload something in the same way as all sources are public. 回答1: The "github releases uploading" feature is announced

How do you programatically download the artifacts from the latest Team City build using C#?

♀尐吖头ヾ 提交于 2020-01-07 06:53:10
问题 I understand the HTTPClient and GET process. What I'm trying to find here is the correct URL/syntax to make this work with Team City. I've been trying to get this to work using the examples at RestDocumentation However, they all require a buildId. This is a distinct build number which changes with each build. I've tried several combinations with buildId=lastSuccesful but I just can't seem to get the syntax correct. I have been able to create a link that successfully downloads a specific build

help for use maven artifacts

吃可爱长大的小学妹 提交于 2020-01-05 05:09:33
问题 I'm learning Maven and I'd need a little help to get started. I use the m2eclipse plugin (Maven) and I would like to generate a project like Struts 2, Hibernate 3, MySQL. For now I just create a simple project with the archetype: maven-archetype-webapp What are the dependencies I need to add? 回答1: For now I just create a simple project with the archetype: maven-archetype-webapp My suggestion would be to use the struts2-archetype-blank archetype instead to bootstrap your Struts 2 application.

How to handle Maven missing artifact errors?

ぐ巨炮叔叔 提交于 2020-01-03 04:14:24
问题 I've just recently started doing Java development and I picked up Maven2 for dependency management and project task automation. One peculiar issue I've stumbled upon, that I haven't been able to fully understand, is that for certain artifacts you need to configure exclusions for their dependencies, otherwise you get a Maven Missing artifact groupId:artifactId:version:lifecycle error. I've tried creating a Spring MVC project from the supplied STS Spring project templates and the Maven POM

How to manually deploy artifacts in Nexus Repository Manager OSS 3

被刻印的时光 ゝ 提交于 2019-12-28 04:51:05
问题 After installing Nexus Repository Manager OSS 3 I do not see option Artifact Upload to upload artifacts through web page. In Nexus Repository Manager OSS 2.13 there is option to do that operation. Anyone can show me the way how to upload artifacts to hosted repository in Nexus 3? EDIT : From 3.9.0 version, this functionality is implemented. 回答1: This is implemented in Nexus since Version 3.9.0. Login Select Upload Fill out form and upload Artifact 回答2: I'm using maven deploy file. mvn deploy

Teamcity REST API: get an artifact path

吃可爱长大的小学妹 提交于 2019-12-25 09:09:12
问题 I have some problem: Have a build with n steps. Last step is a custom c# notifier, that sends emails about build state. Now I need to receive artifacts and attach them to my email. The problem is that at last step we don't have already zipped artifacts, that's why we need to find them ourselves and zip. In some configurations I don't have any property "checkout directory". So, how I can get root checkout folder and artifact path? 回答1: In order to attach files to your email I don't think you

Jenkins packagecloud plugin - upload of a package ex .deb failed if it already exist

蓝咒 提交于 2019-12-25 07:46:24
问题 Using: Jenkins: 2.7.2 PackageCloud Plugin: 1.11 Uploading an artifact to PackageCloud using Jenkins PackageCloud Plugin. My Jenkins job created a .deb package wfcli_5.0.10-2_amd64.deb and using this plugin, I'm successfully able to upload an artifact to my private PackageCloud repository that I created. If I rerun the job, it creates the same package .deb filename and tries to upload the artifact to PackageCloud and giving me the following message and marking the build as failed. 19:07:07

Error during deployment of artifacts to Nexus from Eclipse

荒凉一梦 提交于 2019-12-24 08:26:11
问题 Installed Nexus on our server and set up a snapshot and a releases repositories. Altered my pom.xml file of the top project in my sub-module maven project, added these lines: <distributionManagement> <snapshotRepository> <id>Snapshots</id> <url>http://maven:8081/nexus/content/repositories/Snapshots</url> </snapshotRepository> <repository> <id>Releases</id> <url>http://maven:8081/nexus/content/repositories/Releases</url> </repository> </distributionManagement> I've added a settings.xml to .m2

Python3 tkinter.Canvas.move() method makes artifacts on screen

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-24 04:05:41
问题 I'm trying to execute the code found in one of the Stackoverflow answers. It's a single window application with 2 circles which can be moved with the mouse. When I move circles - I see artifacts. See Sample Program code: import tkinter as tk TOKENWIDTH = 10 class Example(tk.Frame): '''Illustrate how to drag items on a Tkinter canvas''' def __init__(self, parent): tk.Frame.__init__(self, parent) # create a canvas self.canvas = tk.Canvas(width=400, height=400, bg="white") self.canvas.pack(fill=

Is there a way to hide the artifacts that show up in webkit browsers when using jQuery animate?

好久不见. 提交于 2019-12-23 12:38:57
问题 I am using jQuery animate to slide in items on a web page. For some reason, only in webkit browsers, there is a trail of artifacts across the space the element was animated over. Is there a way to stop this from happening or hide it? They are seen on the carousel once you load the page here: http://www.mywebclass.org/~jeff/ 回答1: In your animate callback, scroll down 1px then back up 1px: $(this).addClass('active'); scrollTo(document.body.scrollLeft, document.body.scrollTop + 1); scrollTo