Using a previous version of release and/or the maven SCM plugin

2008-11-05 Thread Heck, Joe
I seem to be stumbling hard over a few bugs that have already been identified, reported, and it looks like patches are available - http://jira.codehaus.org/browse/SCM-415. Almost all of my environment is using token based authentication with Perforce, so I thought I'd just push back to the

RE: Using a previous version of release and/or the maven SCM plugin

2008-11-05 Thread Heck, Joe
/groupId artifactIdmaven-site-plugin/artifactId version2.0-beta-7/version /plugin /plugins /pluginManagement ... /build -joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Heck, Joe Sent: Wednesday, November 05, 2008 3:27 PM

Re: [SURVEY] How does your team retrieve artifacts?

2008-05-21 Thread Heck, Joe
On May 20, 2008, at 11:15 PM, Jason van Zyl wrote: [X] Our team uses HTTP to retrieve our artifacts [ ] Our team intends to use HTTP to retrieve our artifacts [ ] Our team uses the filesystem [X] Our team does not use HTTP or the filesystem because please say what protocol you use and

RE: Artifacts not being indexed

2008-02-15 Thread Heck, Joe
I've run into the same issue, but I don't normally push in files through the file system directly. In the logging, I saw that the system was finding the file, but it wasn't making it through it's steps to getting pushed into the index. I never found a real way around this issue, and just

RE: java - java2wsdl - wsdl2java

2008-02-13 Thread Heck, Joe
We've had a similar problem with some of our multimodule projects. We found adding this additional configuration for the release plugin helped resolve the issue: plugin artifactIdmaven-release-plugin/artifactId configuration

RE: Achiva and Proximity

2008-02-04 Thread Heck, Joe
That process (dropping in new directories to an archiva instance) is exactly what I'm doing - works very nicely. One tidbit that I noticed in version 1.0 is that if you have established an internal repository and then add *to it* after the fact, the artifacts don't always get indexed properly. I

RE: Which technology stack are you using?

2007-07-06 Thread Heck, Joe
Maven (2), with a few Ant plugins and custom tidbits added on Perforce CruiseControl (bagged Continuum 1.0 because it didn't play well with Perforce. 1.1alpha is much better, but waiting for a release to not torque over our developers too much) Proximity (pending looking at some of the newer

RE: Uploading the .jar to my internal repository

2007-06-21 Thread Heck, Joe
You want to use the maven deploy plugin - details on usage here: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martin A.Villalobos Sent: Thursday, June 21, 2007 1:40 PM To: users@maven.apache.org Subject: Uploading the .jar to my internal repository

RE: Maven build listener?

2007-05-16 Thread Heck, Joe
You can build a plugin to bind to any lifecycle phase of the build process - or you can use the AntRun plugin to bind in a specific ant task (or set of tasks) pretty quickly. Not sure what events you want to trigger it, but if just want messages coming out at specific points of the build life

RE: Maven users in the industry

2007-04-12 Thread Heck, Joe
This may or may not apply - We've only recently moved to Maven adoption, and while there have been some problems with the move, the reasons for moving were always very clear - concrete delineation of our dependencies (We have a fairly deep dependency tree, with a lot of older code). That was

need help with a multimodule build - binding an assembly to package it all up

2007-02-28 Thread Heck, Joe
I have several multi-module builds all rolling with Maven, and I'm having a little trouble figuring out how to bind an assembly directive to the master pom's build cycle so that it can pull all the results together into the master pom's target directory. The structure I have now: Master

RE: release:prepare problem with Perforce SCM

2007-02-27 Thread Heck, Joe
When you run the command with -X -e (to get all the debugging output - i.e. mvn -X -e release:prepare ), what do you see towards that failure? I've just run into a similar problem myself, and from what I've gathered so far, it is related to having a parent pom that's in the repository. Still

RE: release:prepare problem with Perforce SCM

2007-02-27 Thread Heck, Joe
. ..David.. -Original Message- From: Heck, Joe [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 27, 2007 11:08 AM To: Maven Users List Cc: Jefferson, David Subject: RE: release:prepare problem with Perforce SCM When you run the command with -X -e (to get all the debugging output - i.e

RE: skipping tests

2006-12-07 Thread Heck, Joe
If you bundle your tests into modules, you can define which modules are dependencies with a profile, and then drive their run/not run based on whether or not a profile is defined. -joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of EJ Ciramella Sent:

RE: skipping tests

2006-12-07 Thread Heck, Joe
. From the commandline would be the best option. Specifying a profile via the commandline would be second best. -Original Message- From: Heck, Joe [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 3:29 PM To: Maven Users List Subject: RE: skipping tests If you bundle your tests

Question about transitive dependencies

2006-12-01 Thread Heck, Joe
I couldn't answer this for one of the devs in our team, so I thought I'd push the question to you all for any feedback you could provide. Any insight would be great... -joe -- -- Can anyone explain to me why transitive dependencies (even of dependencies that are specified as compile scope in

RE: Maven 2 RMI

2006-09-06 Thread Heck, Joe
I never found an RMI plugin, but I resolved the issue by binding in an ant-based task to generate the RMIC stubs to the process-classes phase. Here's the relevant POM snippet... It gets specific to the project (defining which classes get the RMIC task invoked on them), but it has worked

RE: Integration Testing

2006-08-30 Thread Heck, Joe
We have several different mechanisms running - but most of them are honestly manual. The automated solution that one of our teams have come up and and stuck with is the following: 1) set up a multi-module maven2 project, with one of those modules being a functional test suite, another the WAR

RE: [POLL] Why switch to Maven?

2006-08-29 Thread Heck, Joe
This might be under your category of lack of good documentation: the tool really doesn't help you determine what's happening. The error messages are obscure, and there is now easy way to determine what is even easily available from the command line. To learn anything about maven, you need

RE: Cargo Tomcat

2006-08-23 Thread Heck, Joe
We've been using Cargo to deploy out WARs to instances of tomcat on local dev boxes beautifully. The relevant stanza we're using: plugin groupIdorg.codehaus.cargo/groupId artifactIdcargo-maven2-plugin/artifactId configuration container containerIdtomcat5x/containerId

RE: Cargo Tomcat

2006-08-23 Thread Heck, Joe
Tomcat Where can I find the cargo docs? Also, do you ever do any file deploys. I.E. After updating just 1 jsp... -Original Message- From: Heck, Joe [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 4:11 PM To: Maven Users List Subject: RE: Cargo Tomcat We've been using Cargo

RE: Graphical View of Dependencies

2006-08-15 Thread Heck, Joe
You might check out http://www.artima.com/forums/flat.jsp?forum=106thread=155342 and (a thread about JarAnalyzer) and see if that will do what you're looking for. -joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Koh, Pin (STL) Sent: Tuesday, August

RE: Corporate Environment Problems

2006-08-04 Thread Heck, Joe
+1 - we used this ourselves, and it's made maven2 significantly smoother for us. -joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tamás Cservenák Sent: Friday, August 04, 2006 10:10 AM To: Maven Users List Subject: Re: Corporate Environment Problems

[m2] is there a way to utilize an 'unless' clause in an ant-run?

2006-07-12 Thread Heck, Joe
I'm converting a few builds from Ant into Maven2, and the ant targets are using an unless clause to do a little conditional work. Is there a mechanism by which we can specify an unless class in an ant-run task? -joe

RE: Problem with checksum generation

2006-07-07 Thread Heck, Joe
Probably easiest would be to generate the POM and associated hashes to a new location and then copy them back into place. Take a look into the 4k jar and see what's there. I'm not sure, but at a guess there'll be some Maven manifest information. -joe -Original Message- From: [EMAIL

Null Pointer Exception when trying to load my own Ant mojo/plugin

2006-06-29 Thread Heck, Joe
I've been trying to build my own plugin using an Ant mojo, and when I attempt to load it up into maven, I'm getting a null pointer exception. How does one go about debugging this to determine where I've made a mistake in the plugin? This is all being driven in a move to convert a pre-ant build

RE: Any news about the update of Maven2 book with corrected errata ?

2006-06-27 Thread Heck, Joe
I would be happy to be a technical reviewer -joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of natalie burdick Sent: Monday, June 26, 2006 5:10 PM To: Maven Users List Subject: Re: Any news about the update of Maven2 book with corrected errata ?