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
7
votes
1 answer

Gradle: How do I publish a custom file artifact?

Gradle Version: 3.5 I am trying to publish my custom RPM artifact, but the documentation is really unclear about how this should be done. This is an excerpt from our publishing gradle script: project(':path:to:rpm:project') { apply plugin:…
cornergraf
  • 562
  • 8
  • 22
7
votes
2 answers

How to publish an Artifact from inside a Docker container

I'm running a TeamCity agent that spawns a docker container, running several tasks inside that (php) container. Such as phpunit, phplint and composer. I zipped the content inside the container if all tests pass, it will create a…
Tim Ververs
  • 527
  • 9
  • 23
7
votes
1 answer

How to upload an artifact to Artifactory / consume it in a build system (Gradle Maven Ant) where the artifact does not have an extension

I have the following files which I would like to upload to Artifactory as a 9.8.0 versioned artifact. NOTE: The first two files DO NOT have an extension (they are executable files i.e. if you open them/cat on it, you'll see junk…
AKS
  • 16,482
  • 43
  • 166
  • 258
6
votes
1 answer

API/Metadata to find the release date of a Maven artifact?

Given the Maven coordinates (group, artifact, version) of an arbitrary released artifact that you're capable of resolving, (an artifact which may or may not have been sent to Maven Central - could have been released to another artifact repository,…
Roberto Tyley
  • 24,513
  • 11
  • 72
  • 101
6
votes
2 answers

Do I have to explicitly download an artefact in an Azure DevOps pipeline?

I'm using Azure DevOps to create a pipeline that will have one stage to build and publish a Function App as an artefact, and then subsequent stages to deploy the Function App through the required life cycle. What I'm unsure of is whether or not I…
David Gard
  • 11,225
  • 36
  • 115
  • 227
6
votes
1 answer

Could not find artifact org.codehaus.groovy:groovy-all:jar:2.5.6 in pom in java

While doing mvn clean package for the project i am getting below error and did not understand the cause of the error: [ERROR] Failed to execute goal on project dbimport: Could not resolve dependencies for project…
Andrew
  • 3,632
  • 24
  • 64
  • 113
6
votes
2 answers

Azure DevOps: How to retrieve a build artifact from build Azure Pipeline from a PowerShell Script in Release Pipeline?

I have a published a build artifact published to $(Build.ArtifactStagingDirectory)/drop with artifactName "some_sidebar" and the artifact publish location is Azure Pipeline. How can I retrieve that artifact now inside my release Pipeline if I have…
MMMM
  • 3,320
  • 8
  • 43
  • 80
6
votes
2 answers

Java Swing screen artifacts

I have a Swing application with some sort of repaint issue. When a screen (JFrame) is closed, artifacts from that screen are sometimes painted over other screens. It is completely unreproducible on the 100+ developer machines at our office and…
Jason
  • 321
  • 2
  • 16
6
votes
2 answers

How "build" and deploy a plain text maven artifact

I have a maven module for holding a plain text file that I need to "build" (rename the file with name-version-classifier.extension format) and deploy on my maven repository. I know I can deploy it via command line but I want to know if i can…
Luigi De Masi
  • 83
  • 1
  • 6
5
votes
2 answers

Gradle Milestone 5 shows error about a missing artifact *#*!*.*

How can I resolved this error that I see in Gradle after upgrading to Milestone 5: :nodes-all:war :: problems summary :: :::: ERRORS a required artifact is not listed by module descriptor: *#*!*.*
5
votes
2 answers

Gradle is unable to find zip artifact in composite build if java plugin is applied

I have a Gradle project which creates a zip artifact. I define the artifact via artifacts.add('default', zipTask). I add this project to another project via includeBuild and use the zip as dependency (dependencies { myConfiguration…
Piotr Siupa
  • 3,929
  • 2
  • 29
  • 65
5
votes
1 answer

Define an artifact to be used as a dependency in another project

TL;DR I'm trying to configure two Gradle projects in a way that one project uses files built by the other one. The first project is added to the second one by includeBuild and the file is defined in the second project as a dependency. Project…
Piotr Siupa
  • 3,929
  • 2
  • 29
  • 65
5
votes
1 answer

How to deploy artifact to github releases using TeamCity

I configured TeamCity to pull and build my github repo. Than it creates .zip artifact with files that are in "bin/Debug" folder. After that I want it to create a new tag with build number and push it to github releases, but don't have any idea how…
5
votes
0 answers

Gradle custom artifact provider repository i.e. custom dependency resolver

All Gradle ArtifactRepository implementations do is to provide the source for fetching the artifacts. It can be, for example, plain structure, maven repo and so on. I am aware that I can build my own repository implementation with some custom…
igr
  • 10,199
  • 13
  • 65
  • 111
5
votes
2 answers

How do I get Travis-CI to show build artifacts?

I have added Travic-CI on travis-ci.org to my github project. The .travis.yml file looks like this: language: csharp solution: MyProject.sln So, when I go to https://travis-ci.org/username/MyProject/builds/somenumber , then it shows the build as…
user6038265
1 2
3
31 32