Questions tagged [artifact]

Artifact term is used in software development which implies a part or final software solution deployed on execution environments

Software Artifact/s being produced by tools such as , , , , and many more. These artifacts are stored at for distribution.

Useful Links

Wikipedia Page

479 questions
5
votes
0 answers

Publish artifact with custom classifier in sbt

In sbt there are a few custom classifier types that are built-in which are super easy to use. For example specifying publishArtifact in Test := true in your build file automatically generates an artifact with the 'test' classifier with the sources…
Chris Salij
  • 3,096
  • 5
  • 26
  • 43
5
votes
2 answers

What are .pom files in Maven build artifacts?

You can see from browsing any repository that Maven build artifacts contain .pom files. The contents of these files look a whole lot like pom.xml files. Where do these files come from? What are they used for? Additionally, build artifacts have…
jameshfisher
  • 34,029
  • 31
  • 121
  • 167
5
votes
1 answer

What is an artifact in the context of a visual studio solution?

Hopefully an easy question. What is an artifact in the context of a visual studio solution? What do they do? What are some common deployment patterns?
sennett
  • 8,014
  • 9
  • 46
  • 69
5
votes
3 answers

mvn package fails with Required Artifact Missing even though it exists in my Remote Repository

I'm trying to run mvn clean package on my Maven project and it fails with the message: "required artifact is missing" for the artifact net.ezswitch:ResourcesComponent:jar:0.0.14 I've configured my settings.xml to include my Remote Repository and if…
Henrique Ordine
  • 3,337
  • 4
  • 44
  • 70
4
votes
2 answers

resolving tools.jar in ivy

i have a project that uses ivy to manage its dependencies. i'm implementing a feature to the project that requires me to include tools.jar. however, because tools.jar is platform dependent, i'm trying to use ivy to resolve to a local file for the…
mikey
  • 169
  • 5
4
votes
1 answer

GitLab: How to open private job artifacts directly via browser

i'm running a pipeline in my GitLab project where automated ui tests are executed. After the tests has been finished it will generate a test report where also a .html file is generated to be able to view the test results in the browser. The…
juLeZ90
  • 71
  • 5
4
votes
2 answers

Maven 2: Only build artifact if not already installed in local repository

How can I achieve in Maven that when executing "mvn install" from the command line will automatically decide to build the artifact (jar/war) only if that artifact has not already been installed in the local repository? I've already tried with…
Peter Meier
  • 483
  • 3
  • 7
  • 17
4
votes
4 answers

How to download jar from artifact registry (GCP)?

I have a maven Artifact Registry and am able to add dependency in pom.xml and get the jar. I have another usecase where I would like to only download the jar using CLI something which you can easily do with other external maven repos eg curl…
4
votes
2 answers

How can I include a branch name in a wheel version number for Azure DevOps artifacts?

I aim to have normal version numbers for python wheel releases, like 1.0.0, and branch-specific version numbers for specific branches, like 1.0.0.dev1+hg.5.b11e5e6f0b0b. Unfortunately, Azure DevOps rejects most version numbers as invalid with one of…
hey
  • 2,643
  • 7
  • 29
  • 50
4
votes
2 answers

Does GitHub Actions download-artifact create an archive or folder structure?

I am using GitHub Actions and have 2 jobs, one that uploads a folder, and another that will create an image using that folder. Job 1: - name: Upload Build uses: actions/upload-artifact@v1 with: name: StandaloneLinux64 path:…
Redline
  • 441
  • 8
  • 20
4
votes
3 answers

GitLab pass variable from one pipeline to another

We have a master pipeline, which is responsible for triggering pipelines from multiple projects and performing some steps. I want to pass a file from first pipelines output to the second one but i am unable to do so. image: name: some-image …
4
votes
2 answers

Failed to deploy artifacts using maven, error code 409

I am using azure devops, and trying to building code and upload using maven, but i am getting following error message. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy-file (default-cli) on project ojdbc7:…
Ashish-BeJovial
  • 1,829
  • 3
  • 38
  • 62
4
votes
2 answers

Check if artifact or dependency exist in a private repository

This is my POM file that generate a JAR artifact and it is stored in a private repository with Nexus Repository
gtx911
  • 1,189
  • 4
  • 25
  • 46
4
votes
0 answers

Canvas draws artifacts in Safari for animated, filled bezier curves

I created an animated HTML5 canvas that uses bezier curves to draw a filled pattern. I have been testing it in Chrome for Mac. I only seem to see this on Safari for Mac. For some reason, I see little artifacts left behind by the figures (see below…
Chris Butler
  • 733
  • 6
  • 23
4
votes
1 answer

Release definition to publish nuget packages for multiple artifacts

I have a VSTS release definition that I want to use for publishing nuget packages for multiple artifacts. The artifacts for the different nuget packages are supplied to the release definition from different build definitions. Only artifacts from the…