central repo, snapshots and releases

2010-08-23 Thread ChadDavis
I'm reading the Nexus book. It describes how a given repository is either for releases or snapshots. It says that the central maven repo is a release repository. But then in the example for how to configure a profile that will use the nexus served repository instead of central, it shows

Re: central repo, snapshots and releases

2010-08-23 Thread ChadDavis
profiles profile idnexus/id !--Enable snapshots for the built in central repo to direct -- !--all requests to nexus via the mirror -- repositories repository idcentral/id urlhttp://central/url releasesenabledtrue/enabled/releases snapshotsenabledtrue/enabled/snapshots /repository

nexus, local repository, and m2eclipse

2010-08-23 Thread ChadDavis
I'm trying to use nexus to serve a 3rd party dependency. Following the nexus book, I was able to upload the artifact with out incident. I then tried to search for the dependency in the various interfaces of m2eclipse: via add dependency on the pom.xml view, via the repository view. In none of

Re: nexus, local repository, and m2eclipse

2010-08-23 Thread ChadDavis
Is there a reason you're posting these Nexus questions on the Maven Users list instead of the proper forum? I didn't know there was a nexus list. Thanks. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For

Re: nexus, local repository, and m2eclipse

2010-08-23 Thread ChadDavis
I think the issue is that the boundaries between maven, sonatype, m2eclipse, nexus, etc. are a bit unclear to the unitiated, i.e. me. On Mon, Aug 23, 2010 at 3:26 PM, Brian Fox bri...@infinity.nu wrote: You mean, like adding a project information page in the community section with links to all

Re: central repo, snapshots and releases

2010-08-23 Thread ChadDavis
On Mon, Aug 23, 2010 at 3:24 PM, Brian Fox bri...@infinity.nu wrote: The reason is simple: Simple, but not obvious ;) Maven needs at least one snapshot repo configured, or it won't even attempt to ask anyone (specifically Nexus via the mirrorOf * setting) for any snapshots. Maven has built

dumb quetsion . . .

2009-12-07 Thread ChadDavis
I'm been starting to use Maven for some of my projects. One thing that I've not been able to clear up is how the dependencies get deployed to my deployment environment. For development, I sometimes use the assembly plugin's ability to generate a single Jar with all dependencies included, or I

Re: archetypes location

2009-03-16 Thread ChadDavis
But I can use a groupId, artifactId, and version to target an archetype in the repository with out the aid of a catalog . . . correct? On Sat, Mar 14, 2009 at 6:12 PM, Wayne Fay wayne...@gmail.com wrote: Where are these located? In http://repo2.maven.org/maven2?

Re: archetypes location

2009-03-16 Thread ChadDavis
http://maven.apache.org/plugins/maven-archetype-plugin/specification/archetype-catalog.html Sorry about that. I actually scoured over the archetype docs on the site, but hadn't checked out the specification link. Now I know to check the specification link -- ;)

Re: archetypes location

2009-03-16 Thread ChadDavis
http://maven.apache.org/plugins/maven-archetype-plugin/specification/archetype-catalog.html It says that there is a remote catalog file at http://repo1.maven.org/maven2/archetype-catalog.xml This file isn't there. Is this just supposed to mean that you may have a remote catalog file in your

archetypes location

2009-03-14 Thread ChadDavis
When I run mvn archetype:generate, I get a list of 41 archetypes. Where are these located? In http://repo2.maven.org/maven2? If so, why doesn't it pick up the struts 2 archetypes that are also inside of that repo? - To