0
votes
1answer
32 views

how to automate the snapshot versions in maven 3

I have two projects namely Abc and DEF. Now the project DEF has dependency of the project Abc. Daily we use the run the Jenkins build. The project Abc artifacts will be deployed to the Nexus. The ...
0
votes
1answer
69 views

How to maven release multiple profiles project when redeploys are disabled

Question: How should I release a maven project wich has 2 exclusive profiles when redeploys are disabled on Nexus? Example (edited to justify use of profiles): I have a maven project MyArtifact with ...
0
votes
2answers
81 views

Distinguishing maven releases/snapshots from trunk than the ones from branches when getting latest dependencies

I am working on project to automate maven releases for large set of inter-dependent modules. First the task involves getting the latest versions for internal dependencies. Than order the builds in a ...
1
vote
1answer
62 views

Maven 3.0.4 fails to deploy but Maven 3.0.0 works fine

I have a simple Maven project set up that can deploy to a local Nexus server. All the relevant configuration elements are in place (<distributionManagement> section with URL, <server> ...
0
votes
1answer
325 views

Maven release and versions maven plugin

What is the numbering/versioning strategy for dependencies when doing snapshots/releases? A team of 15 developers,20 Maven parent projects = total 70+ POMs including child module POMs. Currently ...
2
votes
1answer
76 views

setting different maven mirror per project

I am participating in two projects, both of which are using private maven repository (using nexus). Since both of them are using their own 3rd party libraries, I want to set corresponding mirror for ...
0
votes
2answers
152 views

How to make Maven install submodule poms?

I have a project that is building fine on my laptop. Today I started to set up the build for this on our Bamboo server. Everything is checked in. Both my laptop and the build server are using Maven ...
0
votes
0answers
67 views

what is the place that maven nexus choose to download the latest index file?

it is easy to find that _0.fdt is downloaded from other place online, so where is it? what's more, if the download process is timeout, will all the download operation failed and be cancled? seems i ...
0
votes
1answer
185 views

Is it possible to have a maven configuration look at a a local nexus storage location first?

We have Jenkins (and Bamboo) on the same server as our nexus server. I would like to know if it's possible to have the maven ~/.m2/settings.xml configuration first check within the nexus disk location ...
2
votes
1answer
42 views

Are there any implications of having a parent POM version number less than a child POM version number?

I am pushing maven artifacts to nexus, are there any implications around having parent POMs with version numbers less than childs POMs?
2
votes
1answer
207 views

Maven Versions Plug-in Skipping Update Check

When I attempt to use versions:use-releases my release repository is marked as "disabled", meaning the snapshot dependencies do not get resolved to releases. I don't understand why the repository is ...
5
votes
2answers
3k views

Maven error: Not authorized, ReasonPhrase:Unauthorized [closed]

I checked out my code from the Nexus repository repository. I changed the password for my account and set it correctly inside my settings.xml file. While executing mvn install clean I get the error ...
0
votes
2answers
312 views

Maven Classifier dependency doesn't resolve always

We use Maven3.0.3 and we use classifier to resolve among dependency for three regions DEV/TEST/PROD. Even though the Nexus maven rep has got the jars with all classifiers(DEV/TEST/PROD) it doesn't ...
1
vote
1answer
124 views

schema or reference for maven-metadata.xml in maven 3 (specifically for <latest/>, <release/>)?

I see Nexus OSS repo manager (re)generating the following maven-metadata.xml and cannot find any info on what do the following properties mean (or where can i find reference to maven-metata.xml - ...
1
vote
1answer
449 views

Sonatype Nexus not recognizing exisiting jars in remote repo

Nexus is having difficulty retrieving jars (spring-*) from central repo. If Nexus is avoided and the project pom simply goes to the repo itself, the jars are downloaded no problem. However, when ...
1
vote
2answers
707 views

Unable to upload a shared pom to Nexus

I have a shared pom which uses the spring api. pom.xml : <project> <groupId>com.spring</groupId> <artifactId>spring</artifactId> ...
2
votes
2answers
2k views

Maven Repositories for Spring Roo

My intent is to proxy Roo Maven repository with my local Nexus installation, so that it will contain Roo 1.2.0.RELEASE packages. On ...
1
vote
2answers
943 views

how to deploy my artifact on to my nexus?

I am using nexus open source as my repository manager for Maven 3.0.3 Maven is able to create artifact *.jar. Now, I would like to how can push the generated artifact *.jar to nexus repo manager, so ...
3
votes
3answers
229 views

Searching Nexus never reveals latest artifact versions

Our shop uses Nexus to proxy for Maven Central and several other repositories. From time to time we use it to search for artifacts to see if what other versions might be available. However it ...
1
vote
1answer
904 views

Maven 3 and timestamps

I have various questions regarding Maven 3 and Nexus repository. At our nexus repository I would like to resolve only timestamp dependencies. That is to say I would like to prevent downloading ...
2
votes
1answer
94 views

Best way to separate storing of dependent artifacts for projects and plugins

In maven 3 we can separate the dependent 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 ...
4
votes
1answer
2k views

maven-metadata.xml is not updated when deploying to nexus

i am using Apache Maven 3.0 Nexus Open Source Edition, Version: 1.8.0.1 this is part of my pom.xml <plugin> <artifactId>maven-deploy-plugin</artifactId> ...
4
votes
3answers
312 views

How to find the artifacts that depend on another artifact?

We are using Maven to build our projects and Nexus as repository manager. Is there a way to know where an artifact is a dependency of another artifact? For example, we want to know which of the ...
1
vote
2answers
408 views

Deploying snapshot sources - Is it possible ? It increments build number

guys I don't know what could be wrong, but I'm deploying snapshot and sources with gpg:sign-and-deploy-file, but the sources name does always have the value of the following buildnumber. Like ...
6
votes
3answers
2k views

How to add dependencies to 3rd party library using nexus/maven

i'm trying to use Nexus + m2eclipse/maven-3 professionnally, and i've got a huge 3rd party library that needs a lot of dependencies. Is there any ways to ease my pain by uploading to Nexus this ...