Re: Reference archive from another module

2011-05-03 Thread CassUser CassUser
Yeah I suppose the spring files can go in the deployment package, but it makes sense for the spring module to run in isolation as well. I'd like to just copy those files from src/main/resources if possible. On Sun, May 1, 2011 at 5:05 PM, Ron Wheeler wrote: > On 01/05/2011 6:14 PM,

Re: Reference archive from another module

2011-05-01 Thread CassUser CassUser
gt; > Try not to reinvent a square wheel. > > Ron > > > > On 01/05/2011 4:11 PM, CassUser CassUser wrote: > >> One other question. >> >> Anyone know whats the preferred way to reference spring files? the files >> in >> src/main/resourc

Re: Reference archive from another module

2011-05-01 Thread CassUser CassUser
One other question. Anyone know whats the preferred way to reference spring files? the files in src/main/resources in other sibling modules to be packaged for deployment... On Sun, May 1, 2011 at 1:07 PM, CassUser CassUser wrote: > Yeah. the distribution module actually is an RPM module,

Re: Reference archive from another module

2011-05-01 Thread CassUser CassUser
at 12:43 PM, Benson Margulies wrote: > Generally people use the assembly plugin in a 'distribution' module to > rearrange things into a distribution hierarchy. Is that what you have > in mind here? > > On Sun, May 1, 2011 at 3:40 PM, CassUser CassUser > wrote: > >

Reference archive from another module

2011-05-01 Thread CassUser CassUser
Hey all, I have a multimodule maven project. One of the modules creates a archive file. It's packaging is jar, but uses another plugin to create a different type of archive. I have a deployment modules which needs to move that archive into a conf folder. How can i achieve this? Thanks.

Maven project packaging

2011-01-21 Thread CassUser CassUser
Hey guys, We have a large multi-module maven project. We need to ship it to a remote site where the client has no internet access. What is the easiest way to package our source code and all dependencies/plugins etc.? Thanks.

Re: dependency management multi-module

2011-01-16 Thread CassUser CassUser
Nevermind, what i described does in fact work :) The error was I receiving was unrelated to having dependencymanagement in the two pom projects. On Sun, Jan 16, 2011 at 11:08 AM, CassUser CassUser wrote: > Hey all, > > I have a parent module with dependencies listed

dependency management multi-module

2011-01-16 Thread CassUser CassUser
Hey all, I have a parent module with dependencies listed under the dependencymanagement section. I now have two modules under this parent, which are both pom packaging maven projects. both the sub parent projects have common dependencies along with some specific. If i put a dependencymanagement

Re: maven rpm plugin

2010-10-20 Thread CassUser CassUser
Hi Wayne, It could be anything standard in the spec file (%build, %install etc.). The problem is a third party is providing the spec file for our use. Instead of having to reverse engineer it, we would like to simply point the plugin to it's location and build the RPM based on those parameters.

Get local IP via Maven

2010-07-01 Thread CassUser CassUser
Hey, Is there a way in maven to get the local IP address of the box which it's running on?

Re: WAR packaging question

2010-07-01 Thread CassUser CassUser
clude resource2.xml from classes without resource1.xml being placed in root? On Thu, Jul 1, 2010 at 9:29 AM, Wendy Smoak wrote: > On Thu, Jul 1, 2010 at 12:19 PM, CassUser CassUser > wrote: > > > resource1.xml is in src/main/resources. The resulting WAR looks like > this: > ...

Re: WAR packaging question

2010-07-01 Thread CassUser CassUser
Can we see your pom file. > > Message original > Sujet : WAR packaging question > De : CassUser CassUser > Pour : users@maven.apache.org > Date : 30/06/2010 22:48 > > When the maven war plugin packages the maven project, the war includes my >> xml resource

WAR packaging question

2010-06-30 Thread CassUser CassUser
When the maven war plugin packages the maven project, the war includes my xml resource in the root directory as well as in the WEB-INF/classes. Is there any way to not include the one in the root directory of the WAR? Thanks!