Tagged Questions
Artifactory is a Binary Repository Manager for use by Maven, Gradle, Ivy, etc. Repository managers serve two purposes: they act as highly configurable proxies between your organization and external repositories and they also provide an organization with a deployment destination for your internally generated artifacts.
26
votes
12answers
14k views
Should we use Nexus or Artifactory for a Maven Repo?
We are using Maven for a large build process (> 100 modules). We have been storing our external dependencies in source control, and using that to update a local repo.
However, we are ready to ...
16
votes
3answers
9k views
When maven says “resolution will not be reattempted until the update interval of MyRepo has elapsed”, where is that interval specified?
I am fairly new to maven. Have been experimenting with Nexus and Artifactory for in-house artifact repos.
With both of them, I occasionally hit an artifact that comes from some 3rd-party repo that I ...
6
votes
5answers
4k views
How to stop Maven/Artifactory from keeping Snapshots with timestamps
Due to disk space considerations I'd like to only ever keep one version of any snapshot in my repository. Rather than keeping multiple versions with timestamp suffixes
e.g. ...
5
votes
1answer
213 views
Need presentation materials for convincing a customer to use Maven
My customer needs a more organized inventory of all 3rd-party libraries (such as JAR files) that are used in production for their projects. I am involved with a number of their Java-based projects. ...
5
votes
1answer
2k views
Accessing an Artifactory/Maven Repo that requires basic-auth
I have an Artifactory repo that sits behind basic authentication. How would I configure the settings.xml to allow access?
<mirrors>
<mirror>
<id>artifactory</id>
...
4
votes
2answers
485 views
maven2 - how to list all resources repository url from pom file
I'm looking for something like this:
List<URL> urls = listURLFromPOM("c:\pom.xml");
..
http://repo1.maven.org/maven2/org/apache/ibatis/ibatis-core/3.0/ibatis-core-3.0.jar
...
4
votes
3answers
1k views
Can Nexus/Artifactory store a copy of an internet Maven artifact?
I would like to have Nexus (or Artifactory, we're not decided yet) store a copy of an artifact when it is downloaded from a public repository on the internet (like Maven Central).
Basically, if you ...
4
votes
1answer
767 views
How do I find the latest version of an artifact from a maven repository
As part of an automated deployment I need a script to download the latest version of an artifact from our internal repository.
Ideally this script will be with ant or a unix shell script.
So for ...
3
votes
1answer
69 views
How to debug the performance of a wrong setup of a build machine?
We have to setup new build environments regularily, and the process seems not so simple. Today I have got a new build machine, and the first Maven build was so slow, that I wanted to clarify why the ...
3
votes
2answers
124 views
Maven3 unable to get latest artifact SNAPSHOT version from remote repo
I've been facing this error fro quite a while now.
Without being able to trace it back in time precisely, I feel it dates back from the switch to maven3.
Here's what happens:
I deploy ...
3
votes
2answers
132 views
How do you manage the licenses of the dependencies (libraries) of your project?
I would like to know if the Nexus repository manager includes a License manager like Artifactory (with this plugin : http://wiki.jfrog.org/confluence/display/RTF/License+Control).
If there is no way ...
3
votes
3answers
128 views
pimp up a plain jar to be a maven jar with internal pom.xml for Artifactory
I need to use a xyz.jar wich was generated with ant. Hence, the transitive dependencies are missing. So I had the idea, to modify the xyz.jar to add the internal ...
3
votes
2answers
380 views
Hudson plug-in not publishing all artifacts to Artifactory
I've got a small Java project setup to build continuously through a Hudson server. I'd like to publish the build artifacts to an Artifactory server as a post-build step so, naturally, I'm using the ...
3
votes
1answer
861 views
Artifactory: Auto-generate archetype catalog?
Is there a way to have Artifactory automatically generate the archetype-catalog.xml file for a repository? At the moment, I maintain it by hand and publish it via HTTP PUT. While this is doable for ...
3
votes
4answers
3k views
Multiple deployments in maven
We have a internal artifactory repository. At the moment all snapshots will be deployed there. We also want to have a different server with a web interface, and want to copy the to it the created ...
2
votes
1answer
138 views
How to maintain different maven environments for production and development?
In a Java world where people use Maven/Ivy to manage dependencies, how should one maintain multiple environments/repositories (artifactory) for production and development environments?
The developers ...
2
votes
3answers
220 views
Want artifact traceability without giving up the SNAPSHOT qualifier
Background. My org uses Maven, Bamboo and Artifactory to support a continuous integration process. We rely on Maven's SNAPSHOT qualifier to help manage storage in Artifactory (rotate out old SNAPSHOT ...
2
votes
2answers
236 views
How do you ensure repeatable builds with an artifact repository like nexus or artifactory vs. checking libs into source control?
In all of the artifact repository's that I've evaluated I have to see how I can maintain my repository in such a way that I can archive old stuff so I'm not looking at thousands of artifacts in the ...
2
votes
2answers
1k views
Open source ALM software stack
I was looking at open source ALM tools and discovered an interesting project called jabox.
Jabox is a new project designed to support Maven builds and new projects are setup with pre-configured POMs ...
2
votes
2answers
890 views
How to configure Artifactory using PostgreSQL instead of MySQL?
How would one configure PostgreSQL instead of MySQL to run artifactory?
2
votes
2answers
2k views
“Missing artifact” errors with company repository
I setup a company maven repository using artifactory. I deployed a project of us into the repository. If I now specify a dependency to that artifact, it doesn't get retrieved. Which it should, because ...
1
vote
1answer
54 views
Reverse dependecies
We are using Ivy with Artifactory as a repository. In Artifactory both third-party libraries and our release packages are stored.
If there is a bug in an artefact (3rd party or our package) I would ...
1
vote
2answers
64 views
Maven unique snapshots and dependency convergence
I have a project in which the maven-enforcer rule fails with a multi-module build using non-unique snapshots (which are annoyingly the only kind of snapshot supported in Maven 3).
For example, ...
1
vote
1answer
41 views
Resolve Ivy dependency version order
In my build artifact repository, I have builds from both a branch and a trunk.
I have tested that my resolve works to the branch, and grabs the correct item.
But this doesn't work if the ...
1
vote
2answers
126 views
Publish SNAPSHOT artifacts to Maven using IVY - what's the magic?
We have a slight convoluted situation...
For the most part we've been using IVY and ANT to manage our builds and dependencies. Now the company is moving towards using Maven. We have a set of projects ...
1
vote
1answer
51 views
In artifactory repositories, what is the difference between a file integration revision and a folder integration revision?
I'm looking at different repository layouts, and I see a distinction between folder integration revisions and file integration revisions.
Are these the same revision number (just placed on a file ...
1
vote
1answer
78 views
How are snapshot and release repositories used differently?
I understand that during development build artifacts are placed in the snapshot repository.
When a product needs to go to QA for testing, do teams pull from the snapshot repository? Or do they do a ...
1
vote
3answers
87 views
connecting artifactory repository to nexus
I'm in an organization with multiple development efforts existing in parallel. My project is using Nexus to manage our Maven repository, and there's another group using Artifactory for their Maven ...
1
vote
1answer
94 views
artifactory classifier metadata snapshot maven 3.0
My problem is "simple" but I didn´t found the solution until now:
I have 2 projects.
Project A built with a classifier (called dev or pro) with help of a specific profile
Project B with a ...
1
vote
1answer
57 views
Mapping from one repository type to another, does it work?
I've been going through all the scenarios, digging around the web, and have yet to find an answer to this. Is it possible for Artifactory to map from one repository layout to another? This is my ...
1
vote
1answer
377 views
Can i move local maven repository to internal repository when i set the internal repo for the first time?
i wanted to setup artifactory as internal repo after i had actually used maven and populated my local repository during various builds. Before I set up artifactory on my machine, my local repository ...
1
vote
1answer
63 views
Best way to separete storing of dependend artifacts for projects and plugins
In maven 3 we can separate the dependend artifacts for projects and plugins.
What is the best way to do this with a repo manager (nexus ...) if you have proxied and hosted repos? Any examples how ...
1
vote
1answer
351 views
Using the Ivy plugin together with the Artifactory plugin in Jenkins/Hudson
I am trying to use the Ivy plugin (http://wiki.jenkins-ci.org/display/JENKINS/Ivy+Plugin) and the Artifactory plugin (http://wiki.jenkins-ci.org/display/JENKINS/Artifactory+Plugin).
I am gettign the ...
1
vote
0answers
242 views
Copy artifact in Artifactory to a remote repository
I have the following setup:
Development server for continuous build with Hudson, Maven and Artifactory up and running.
I am able to build an artifact by Maven, and let Hudson deploy it to ...
1
vote
2answers
658 views
Maven fails to get SNAPSHOT builds from repository
Our internal repository (Artifactory) now contains both the stable builds as well as SNAPSHOT versions of our internal libraries.
For stable builds there has never been a problem of downloading ...
0
votes
2answers
88 views
Unable to download external jars in to Artifactory
I am using Jfrog's Artifactory and i have included repo1.maven.org/maven2 as a remote repository but when i request for a particular artifact from my IDE, the artifactory doesnt download it to the ...
0
votes
1answer
96 views
Archiva vs Artifactory
What's the difference between Archiva vs Artifactory repository for MAVEN ?
Anybody has comparison chart on this ?
Which one is better out of these 2 as i am looking for free repository not ...
0
votes
2answers
102 views
How to use artifactId with different filename?
Using Artifactory and Maven, how can one refer to a dependency with the correct group/artifactId/version but use a filname that differs from the artifactId-version.end style?
The problem comes with a ...
0
votes
1answer
77 views
Maven Checks the local repository but downloads from central. Why?
We have a local artifactory repository setup for caching. It is configured in our projects, but when I'm looking at stdout of the build process I see rows like this
Downloading: ...
0
votes
2answers
264 views
How can I configure the play framework to use my artifactory repository for all dependencies?
I am trying to add a local maven repository that I have set up using artifactory which I use to cache maven repositories. Following the dependency instructions I have found how to set up a repository ...
0
votes
1answer
91 views
Artifactory and tomcat out of memory
i am using artifactory 2.3.4.1 on tomcat 6
and sometimes when i am deploying or deleting from artifactory
tomcat gets out of memory, any ideas why ?
and how to fix that, thanks in advance.
0
votes
1answer
97 views
Retrieving old builds for re-deployment in Jenkins
I have built an automated deployment system using Jenkins, Subversion and ANT on a set of environments. It all works, allowing me to deploy old tagged releases to a set of environments or ...
0
votes
1answer
46 views
How to detect duplicate artifacts in artifactory
I know that artifactory uses checksum based storage and will only store one copy of an artifact even if I upload multiple identical ones under different names.
As I have many projects with ...
0
votes
1answer
142 views
Indexed repositories within Artifactory
Apologies if this is obvious to everyone else...
I've deployed the Artifactory war file within tomcat6 and started the server: all looks great.
Now, I want to navigate around the preconfigured ...
0
votes
4answers
286 views
unauthorized access on artifactory even though credentials are included
I am trying to deploy a zip file to a remote inhouse maven repo.(artifactory integrated into hudson).
pom.xml
...
<modelVersion>4.0.0</modelVersion>
...
0
votes
1answer
240 views
Tomcat's context path for a webapp not working
I'm installing Artifactory (http://www.jfrog.com/products.php) under a default tomcat installation (ubuntu server distribution). I create a /etc/tomcat6/Catalina/localhost/artifactory.xml file with ...
0
votes
1answer
69 views
How can I prevent previously deployed artifacts from being overwritten?
We use Artifactory for our company's Maven repository. Is there a way to set it up (or set Maven up) so that an artifact can't be deployed to the repository if there is a pre-existing artifact with ...
0
votes
0answers
85 views
Maven dependencies Problem
First i found many posts and many solutions for my problem here but no one works.
I have this error message when I update snapshot in my project
18/04/11 09:23:13 CEST: Missing artifact ...
0
votes
3answers
665 views
Free artifactory or nexus service url without password, for using in intellij idea
Intelliji Idea shiped with 3 free online repository in settings -> maven -> artifactory or nexus service url
http://oss.sonatype.org/service/local/
http://repo.jfrog.org/artifactory/api/
...
0
votes
0answers
180 views
Artifactory does not resolve any dependency to e.g. repo1
after a brand-new installation of Artifactory on Tomcat 5.5 everything is up and running fine...
EXCEPT
that the Artifactory does not resolve any artifact from e.g. central Repo1. (the cache seems ...