Questions tagged [artifacts]

mostly used in terms of computer graphics artifacts are unwanted bugs in rendered output

in terms of computer graphics artifacts are unwanted bugs in rendering output

  • usually caused by rounding errors of float values
  • or by overflows/underflows of integer values

Most usual are:

  • invalid pixel color for some pixels
  • choppyness (pixelation) of image (like very low quality JPG)
  • holes in geometry (related to Z-Buffer accuracy)

Artifacts are not bound to graphics only

  • for example high order polynomial computations can also have artifacts inside
  • causing invalid results while using them if precision is too low
446 questions
135
votes
4 answers

Archive the artifacts in Jenkins

Could someone please explain to me the idea of artifacts in the build process? I have the workspace directory where I check out the code to compile and run my ant scripts etc. At the end, in my case, I get a jar file that's ready to install. Is that…
Michael
  • 19,964
  • 33
  • 119
  • 171
115
votes
10 answers

How do I force Maven to use my local repository rather than going out to remote repos to retrieve artifacts?

I’m using Maven 3.3.3 with Java 8 on Mac Yosemite. I have a multi-module project. first-module my-module When I build my one of my child…
Dave
  • 17,420
  • 96
  • 300
  • 582
79
votes
8 answers

How to manually deploy artifacts in Nexus Repository Manager OSS 3

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…
Paweł Głowacz
  • 2,636
  • 3
  • 15
  • 24
78
votes
1 answer

Why is a Safari page breaking iOS rendering?

I know the title is not that explanatory but here is the story: I am developing a browser game, mostly using JavaScript and the Mapbox library. Everything works well on desktop, Android and iOS but one problem appears on iOS: after letting the game…
XCS
  • 23,776
  • 24
  • 82
  • 135
53
votes
10 answers

How to publish artifacts in Travis CI?

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…
eigenein
  • 1,937
  • 2
  • 22
  • 41
43
votes
3 answers

Where are Jenkins artifacts located?

I added the Archive Artifacts post-build option to my project. I can see the artifacts from the web browser interface, but I cannot find them in the filesystem. Where are they located?
Victor
  • 11,135
  • 16
  • 65
  • 128
30
votes
5 answers

Can Nexus or Artifactory store simple tar.gz artifacts?

I have cloud servers located in separate data centers across the world. Each data center is separate from the others. I'm looking for an easy way to deploy artifacts to individual clusters of servers (that may be running different versions of…
GregB
  • 4,587
  • 5
  • 21
  • 35
28
votes
6 answers

Export unsigned apk from a Gradle Project in Android Studio

I usually create projects with Eclipse and import them into Android Studio, because I hate the project structure AS gives me. In it´s module settings, I have the possibility to create artifacts which allow me to output the built apk to a certain…
Marian Klühspies
  • 12,202
  • 12
  • 70
  • 108
25
votes
2 answers

Recommend Build Artifact Repository Manager

Currently we use FTP to maintain build artifact distribution and 3rd party products (for internal use only). Artifacts are docs (HTML/pdf/chm/...), libs (.dll/.so/.a/.jar/...), programs (.exe/.jar/...) and anything else. They are not restricted to…
gavenkoa
  • 37,355
  • 13
  • 206
  • 248
23
votes
5 answers

Difference between javax.servlet-api.jar vs servlet-api.jar

In my maven repository under groupId javax.servlet i have these two separate artifacts for servlets. I am confused which one should i use to build a simple servlet application? What's the difference between these two artifacts?
Ruelos Joel
  • 1,639
  • 2
  • 12
  • 29
21
votes
2 answers

Nexus supports Mass upload of artifacts?

I wanted to know if we can have mass upload of artifacts to the repository in Nexus.
user170114
  • 565
  • 5
  • 15
  • 24
21
votes
2 answers

How to determine if a Maven artifact is in my repo from command line?

I would like to check from command line if a certain coordinate (groupId.artifactId.version) can be found in a repository. If it is possible, can it be done with partial coordinates (e.g artifactId.version)? Can I specify the repo? I do not ask for…
kostja
  • 56,537
  • 45
  • 164
  • 213
20
votes
2 answers

jenkins, what does fingerprint artifacts means?

My understanding As far as I understood artifacts up to now, is that it was used to know if my project refers to an unfinished build task's artifacts. Problem I tried reading more (on jenkins site too) but I'm not sure I understand so easily what…
Cher
  • 2,449
  • 7
  • 28
  • 56
19
votes
3 answers

How to publish builds to Artifactory from GitLab CI?

I am looking for an easy and clean way to publish artefacts build with GitLab CI onto Artifactory. I was able to spot https://gitlab.com/gitlab-org/omnibus/blob/af8af9552966348a15dc1bf488efb29a8ca27111/lib/omnibus/publishers/artifactory_publisher.rb…
sorin
  • 137,198
  • 150
  • 472
  • 707
15
votes
6 answers

Can Jenkins store artifacts outside the job directory?

I currently have Jenkins set up with a number of jobs, but it's proving difficult to back up because the artifacts are stored within the job directory. I'd like to back up the job configurations and artifacts separately. I'm sure I remember reading…
the_mandrill
  • 27,460
  • 4
  • 58
  • 90
1
2 3
29 30