Maven 2 documentation portion of the site is horribly broken

2007-08-10 Thread EJ Ciramella
Can someone please either enlighten me as to what I'm doing wrong or fix the site? Almost 90% of the links anywhere don't work. Considering this is the ONLY source for m2 documentation, this is a huge failure. http://maven.apache.org/plugins/index.html None of those links work anymore for

RE: Maven 2 documentation portion of the site is horribly broken

2007-08-10 Thread EJ Ciramella
link is: http://maven.apache.org/plugins/index.html#maven-jar-plugin/ Correct link is: http://maven.apache.org/plugins/maven-jar-plugin/ Just cut out the index.html# and you'll get to the documentation for the jar plugin. Wayne On 8/10/07, EJ Ciramella [EMAIL PROTECTED] wrote: Can someone please

Version numbering

2007-08-14 Thread EJ Ciramella
Is there any way for a child pom to simply inherit the version number from the parent? We have a few use cases where this would be very helpful.

building and installing a source only jar

2007-08-14 Thread EJ Ciramella
Is there any way to build a source only jar and install that to our internal remote repository? We're trying to get more modular with our builds and would like to still allow eclipse users to hop to the source of a particular dependency. Even after I'm able to build a source only jar, is there

RE: building and installing a source only jar

2007-08-15 Thread EJ Ciramella
: Maria Odea Ching [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 2:57 AM To: Maven Users List Subject: Re: building and installing a source only jar EJ Ciramella wrote: Is there any way to build a source only jar and install that to our internal remote repository? Try 'mvn source:jar

RE: building and installing a source only jar

2007-08-15 Thread EJ Ciramella
: mvn deploy:deploy-file -DgroupId=lty -DartifactId=lty-utils -Dclassifier=sources -Dpackaging=jar -Dversion=1.0-SNAPSHOT -Dfile=lty-utils-1.0-SNAPSHOT-sources.jar -DrepositoryId=central -Durl=file:\\build.corp.upromise.com\maven2 -Dgeneratepom=false -Tim EJ Ciramella schrieb: Yep, I found

RE: building and installing a source only jar

2007-08-15 Thread EJ Ciramella
Ok, maybe I'm wrong - what's the easiest way to install this source jar in your local repository? Say the developer doesn't have the actual source from perforce -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 10:56 AM To: Maven Users

weird error - anyone seen this before?

2007-08-15 Thread EJ Ciramella
If I do a mvn deploy of module A, I can watch it get uploaded to our repository and there are no errors. I can also look over the pom that gets created and etc and all looks great. When I do a mvn install of module B, which depends on version 1.0.0.11 of module A (installed in the previous

RE: Re: Version numbering

2007-08-15 Thread EJ Ciramella
: Version numbering Hi, I think you can just omit the version element in the child pom. Best regards Achim EJ Ciramella wrote: Is there any way for a child pom to simply inherit the version number from the parent? We have a few use cases where this would be very helpful

When to use -SNAPSHOT when to use a build number

2007-08-20 Thread EJ Ciramella
Just wondering, when should you convert from a -SNAPSHOT version to a fully fledge build number? When you convert to a build number, how does your build system update it internally? Does it edit/submit the pom(s)?

RE: When to use -SNAPSHOT when to use a build number

2007-08-20 Thread EJ Ciramella
with the objectivity side. When it is time for a real build, we do it manually, our continuous integration/build system does not cut those builds. I think this is pretty normal for most people on this list. Wayne On 8/20/07, EJ Ciramella [EMAIL PROTECTED] wrote: Just wondering, when should you convert

remote-resources

2007-08-22 Thread EJ Ciramella
I'm really interested in getting this working as currently, we have one module that always has to build. What I don't see is how do these actually get jarred up or packaged up into some kind of distributable? Running mvn remote-resources:bundle just creates a manifest file but no archive for

RE: remote-resources

2007-08-22 Thread EJ Ciramella
to a phase to have it invoked automatically. Bundle only makes the remote-resources.xml file, you still need to jar things up. Wayne On 8/22/07, EJ Ciramella [EMAIL PROTECTED] wrote: I'm really interested in getting this working as currently, we have one module that always has to build. What I

RE: remote-resources

2007-08-22 Thread EJ Ciramella
other projects. What exactly were you expecting / assuming? That it would pick out your resource files only and make yet another jar called project-1.0.0-resources.jar? Wayne On 8/22/07, EJ Ciramella [EMAIL PROTECTED] wrote: I see things getting into our source and bin jars, but still, here's my

RE: remote-resources

2007-08-22 Thread EJ Ciramella
seem to be working for me, but not you. What seems to be wrong on your end, and why do you think it is wrong? Wayne On 8/22/07, EJ Ciramella [EMAIL PROTECTED] wrote: I was expecting it to understand the resources as listed in the pom this plugin is configured in. Considering this is what

RE: remote-resources

2007-08-22 Thread EJ Ciramella
the resources are included in the xml file. But all files are in the jar. 2. That was not part of my test. What tokens are you hoping to replace, for what purpose? I expect this should probably work, but can't know without tests. Wayne On 8/22/07, EJ Ciramella [EMAIL PROTECTED] wrote: 1 - Is your

can't install top level pom

2007-08-27 Thread EJ Ciramella
I'm having some problems installing a particular pom into our internal repo, I keep getting this exception - can anyone shed a little light on this? This would be the first version up here (as it is a fresh snapshot) so there won't be any metadata. [DEBUG] Configuring mojo

Can't find settings.xml

2007-08-28 Thread EJ Ciramella
We occasionally have the following error: Error reading settings.xml: Error reading settings file Anyone seen this before? Stinks to have a 90+ min build fail even though this file is there... The solution seems to be to delete it (and let the boot strapping process copy it back in

RE: integration testing

2007-08-28 Thread EJ Ciramella
your integration test phase, install reg-srv and start it up THEN run your own integration tests?? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 28, 2007 2:40 PM To: Maven Users List Subject: integration testing I'm kinda dancing around a local

integration testing

2007-08-28 Thread EJ Ciramella
I'm kinda dancing around a local solution, but how is the rest of the maven world doing something like integration tests where the tests require a running instance of the code they're trying to test? We have things like registry services that we'd like to integration test, but the tests would

Building every module in a project with the latest

2007-09-05 Thread EJ Ciramella
Is there an easy way to really perform an integration build with Maven 2 (easily)? I'm wondering if there isn't a simple way to say, Hey, build with the tip revision of everything.

RE: tomcat plugin questions

2007-09-07 Thread EJ Ciramella
Ah HA - looks like I needed to move this out of a profile. Sorry for the noise! -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, September 07, 2007 12:49 PM To: Maven Users List Subject: tomcat plugin questions Is anyone using the tomcat plugin

tomcat plugin questions

2007-09-07 Thread EJ Ciramella
Is anyone using the tomcat plugin for deployment? I'm struggingling a little bit. Currently, I'm running Tomcat 4.X and seeing this error repeatedly: E:\work\release_engineering\exportUpdatermvn tomcat:undeploy Error reading settings.xml: parser must be on START_TAG or TEXT to read text

RE: tomcat plugin questions

2007-09-07 Thread EJ Ciramella
Ok, maybe I'm still struggling a bit. So when I tweak a jsp, I run mvn package tomcat:redeploy but then I don't see my changes. Any suggestions? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, September 07, 2007 12:58 PM To: Maven Users List Subject: RE

RE: Why Maven is Hard?

2007-09-26 Thread EJ Ciramella
I have to agree with the comments in this thread. Asking someone to contribute documentation for a plugin they didn't write is pretty lame. How about not letting someone submit a plugin until not only has the code been tested/proven, but the associated documentation is up to snuff? I don't know

RE: Why Maven is Hard?

2007-09-26 Thread EJ Ciramella
And this is where in/on the site? What about an option to maven that gives a list of goals like ant did with targets? One outstanding thing that ant did was self documentation. I miss that... -Original Message- From: Michael McCallum [mailto:[EMAIL PROTECTED] Sent: Wednesday,

getting mvn to output what source files its compiling

2007-10-09 Thread EJ Ciramella
We have a little issue with a single class file that keeps getting compiled time after time. Is there any way to get mvn to spit out what class it is building? I tried -X -e and also -g -verbose, but its still not spitting it out.

RE: getting mvn to output what source files its compiling

2007-10-10 Thread EJ Ciramella
it is currently compiling, at a minimum. Can you make this work? If so, then there is a possibility that Maven compiler can be modified to do it as well. If not, there is very little chance of this happening in Maven. Wayne On 10/9/07, EJ Ciramella [EMAIL PROTECTED] wrote: We have a little issue

RE: getting mvn to output what source files its compiling

2007-10-10 Thread EJ Ciramella
debugging your problem. -Tim EJ Ciramella schrieb: Hate to simpson's did it, but this was always a great feature of ant. Turning on this feature allowed me to see which class(es) were getting recompiled with each compiler pass. Typically it was a packaging statement gone awry. But I have

RE: getting mvn to output what source files its compiling

2007-10-10 Thread EJ Ciramella
NVM - I can see a debug statement echoing out the file in question. I didn't scroll far enough to the right ;-) -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 2:46 PM To: Maven Users List Subject: RE: getting mvn to output what source

RE: setting the version number in Maven

2007-10-10 Thread EJ Ciramella
Is it me or is that site horribly slow (and that link didn't work)? -Original Message- From: Erez Nahir [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 4:07 PM To: Maven Users List Subject: Re: setting the version number in Maven Hi Bob, Have a look at

RE: setting the version number in Maven

2007-10-11 Thread EJ Ciramella
- From: Tomasz Pik [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 4:17 PM To: Maven Users List Subject: Re: setting the version number in Maven On 10/10/07, EJ Ciramella [EMAIL PROTECTED] wrote: Is it me or is that site horribly slow (and that link didn't work)? works for me

RE: setting the version number in Maven

2007-10-11 Thread EJ Ciramella
, 2007 5:38 pm, EJ Ciramella wrote: Currently, we're using the deploy-file goal and specifying a build number to that (even though internally, the poms list a snapshot version). Additionally, when our larger parent/child combos branch, there's the added effort to change each and every pom

Has this bug been fixed/addressed?

2007-10-11 Thread EJ Ciramella
http://jira.codehaus.org/browse/MJNCSS-16 We too are running into this issue...

RE: Has this bug been fixed/addressed?

2007-10-11 Thread EJ Ciramella
NVM - I can see this is a bug in javancss reporting, not maven and not the plugin. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, October 11, 2007 1:37 PM To: Maven Users List Subject: Has this bug been fixed/addressed? http://jira.codehaus.org/browse

EJB Manifest file creation/update

2007-10-12 Thread EJ Ciramella
Is there any way to use the jars listed as dependencies rather than hard coding a list of jar files? We have something like this: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-ejb-plugin/artifactId version2.1/version configuration

RE: EJB Manifest file creation/update

2007-10-15 Thread EJ Ciramella
Do you have an example of this? addClassPath ;-) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To

Activating a profile from another profile

2007-10-16 Thread EJ Ciramella
Is there an easy way to put a profile in a parent pom and then activate that from a child profile?

ejb building not working

2007-10-17 Thread EJ Ciramella
Has anyone run across this particular type of error: [ERROR] BUILD ERROR [INFO] [INFO] Error assembling EJB: META-INF/ejb-jar.xml is required for ejbVersion 2.x [INFO]

Copying resources

2007-10-18 Thread EJ Ciramella
Is there a way to copy stuff outside of the project directory in? Say I'm building in: E:\project\somedir\pom.xml and I want to copy in files as defined as a property in profiles.xml: some.dir=C:\somedir Is there a way I can copy some items from ${some.dir}?

RE: Copying resources

2007-10-18 Thread EJ Ciramella
plugin to unpack this zip where you need it. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 2:08 PM To: Maven Users List Subject: Copying resources Is there a way to copy stuff outside of the project directory in? Say I'm building in: E

RE: Copying resources

2007-10-18 Thread EJ Ciramella
- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 3:17 PM To: Maven Users List Subject: RE: Copying resources Actually, using the ${somevalue} in profiles.xml (and providing a full path to something outside the standard build directory) seems to be working

RE: Dependency understanding problem

2007-10-23 Thread EJ Ciramella
Another way to think of this is you really shouldn't have many jar only modules, no? If you're using something like CC, then each of these jar only modules would be separate projects. The final application (ear/war/w/e) will depend on these other modules. When it comes time to build the

RE: Dependency and build problems

2007-10-23 Thread EJ Ciramella
Mvn clean will not delete anything out of your local repository. -Original Message- From: Dennis Lundberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 23, 2007 2:45 PM To: Maven Users List Subject: Re: Dependency and build problems Jean-Philippe Steinmetz wrote: Hi Everyone, I

RE: Dependency and build problems

2007-10-23 Thread EJ Ciramella
: RE: Dependency and build problems Thanks for the reply. So how do I clean the local repository? Jean-Philippe -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 23, 2007 11:50 AM To: Maven Users List Subject: RE: Dependency and build problems

maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
I've just noticed kinda a little delemma here. From build to build, when NOTHING has changed inside module A, I can see that its still rebuilding the jar for this particular module. Is there any reason this should be happening? Like say it is set to build a snapshot version? I think it would

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
15:49, EJ Ciramella wrote: I've just noticed kinda a little delemma here. From build to build, when NOTHING has changed inside module A, I can see that its still rebuilding the jar for this particular module. Is there any reason this should be happening? Like say it is set to build a snapshot

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
Subject: Re: maven constantly rebuilding everything Go here: http://jira.codehaus.org/browse/MSOURCES Open up an account (it's free ;-) ) and fill out a new issue. On Thursday 08 November 2007 16:52, EJ Ciramella wrote: Um, how does one file a jira ticket for something like this? -Original

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
. On Thursday 08 November 2007 16:33, EJ Ciramella wrote: So I added a snippet of configuration from here: http://jira.codehaus.org/browse/MJAR-7 But the same kind of configuration supplied to the source plugin does nothing (and it too rebuilds the source jar every time even though

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
\pom.properties is newer.) What exactly is this file and how does it get created? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, November 08, 2007 10:12 AM To: Maven Users List Subject: RE: maven constantly rebuilding everything So we regularly use mvn

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
Rebuilding this same module with -X -e turned on, I see this: [DEBUG] isUp2date: false (Input file E:\work\up-svcs\lty\proj\LTY-P200712\backoffice\core\pom.properties is newer.) What exactly is this file and how does it get created? -Original Message- From: EJ Ciramella [mailto:[EMAIL

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
guys? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, November 08, 2007 11:04 AM To: Maven Users List Subject: RE: maven constantly rebuilding everything Done! http://jira.codehaus.org/browse/MSOURCES-28 (apparently, I already had an account

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
.) Or just open a JIRA but you know it will not be resolved as quickly as you require. Wayne On 11/8/07, EJ Ciramella [EMAIL PROTECTED] wrote: And the saga continues - I can see pom.properties going into the mvn generated war file as well (so that's getting built every time). I see that war

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
://jira.codehaus.org/browse/MSOURCES Open up an account (it's free ;-) ) and fill out a new issue. On Thursday 08 November 2007 16:52, EJ Ciramella wrote: Um, how does one file a jira ticket for something like this? -Original Message- From: Roland Asmann [mailto:[EMAIL PROTECTED] Sent

RE: what version of the documentation am I looking at

2007-11-08 Thread EJ Ciramella
Now that I can see what the documentation if for, this email starts to answer the next part - where can I get that version? -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, November 08, 2007 6:42 PM To: Maven Users List Subject: Re: what version of the

RE: maven constantly rebuilding everything

2007-11-08 Thread EJ Ciramella
, 2007 2:57 PM To: Maven Users List Subject: Re: maven constantly rebuilding everything This is certainly the right way to do it, but as far as I know/have seen, this is not currently how it is being done. Wayne On 11/8/07, EJ Ciramella [EMAIL PROTECTED] wrote: Ok, so we're going to copy/paste

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
I nearly always build clean package or clean install so I expect them to rebuild from scratch every time... So no. ;-) Wayne On 11/8/07, EJ Ciramella [EMAIL PROTECTED] wrote: So no one else has mentioned this? Multiple war files rebuilding every pass? Or jars rebuilding all the time? I'll

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
are for the lastest snapshot, however, the overwrite flag has been there since 1.0. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 12:21 AM To: Maven Users List Subject: what version of the documentation am I looking at Is it possible to easily

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
parent, but instead run it from the module you're working on. At least, this is what we do... Wayne On 11/9/07, EJ Ciramella [EMAIL PROTECTED] wrote: That's incredible, doing that takes 30 - 40 minutes here. Most developers here are used to a 10 build time. -Original Message- From

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
On 11/8/07, EJ Ciramella [EMAIL PROTECTED] wrote: Now that I can see what the documentation if for, this email starts to answer the next part - where can I get that version? -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, November 08, 2007 6:42 PM

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
-dependencies instead. You can specify the artifact and group as filters to get just the one you want. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 3:00 PM To: Maven Users List Subject: RE: what version of the documentation am I looking at How long

RE: what version of the documentation am I looking at

2007-11-09 Thread EJ Ciramella
intended to be used for things that aren't normally dependencies (like zip files) -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 4:23 PM To: Maven Users List Subject: RE: what version of the documentation am I looking at 1 - I don't see

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
] [INFO] Total time: 3 seconds [INFO] Finished at: Fri Nov 09 11:04:02 EST 2007 [INFO] Final Memory: 11M/254M [INFO] -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 8:58 AM

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
* have changes, even when you don't. Also the filtered resources thing that Daniel mentioned is another forgotten source of changes. Damien just sent the link to this bug, he must have been reading my mind... ;-) Wayne On 11/9/07, EJ Ciramella [EMAIL PROTECTED] wrote: I'd love to know what people

RE: maven constantly rebuilding everything

2007-11-09 Thread EJ Ciramella
Well, maybe I'm not quite out of the woods. Process-resources always moves some files into classes so I guess this will forever jar stuff up, right? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 1:13 PM To: Maven Users List Subject: RE

RE: maven constantly rebuilding everything

2007-11-12 Thread EJ Ciramella
built jar before installing. 3 - Make the war plugin able to ignore/exclude maven generated files (such as pom.properties) - this may/may not solve our war rebuilding issues. ??? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 9:33 PM

RE: maven constantly rebuilding everything

2007-11-12 Thread EJ Ciramella
jar from repo, compare contents to just built jar (hash both and compare?). Or did you have another plan? Wayne On 11/12/07, EJ Ciramella [EMAIL PROTECTED] wrote: So the fix would be something like: 1 - Make process-resources look at the source of the activated profiles and make sure

RE: maven constantly rebuilding everything

2007-11-12 Thread EJ Ciramella
. But there may not ever be a way to make it work 100%. This may take a lot of thought and testing and defining to even know. -- Lee On Nov 9, 2007 7:57 AM, EJ Ciramella [EMAIL PROTECTED] wrote: I'd love to know what people are building and the size of things, I think our project is larger than most (I'm

Source control structure for Maven projects

2006-06-01 Thread EJ Ciramella
Hello list! Is there any best practices docs I could be pointed to for this? We'd like to do something like: //depot/srvcs/project/project-1/module-1/pom.xml //depot/srvcs/project/project-1/module-2/pom.xml //depot/srvcs/project/project-1/module-3/pom.xml

RE: Source control structure for Maven projects

2006-06-01 Thread EJ Ciramella
it as well, more or less. Except we're using SVN and it appears you're using something else. What specifically are you looking for in the way of best practices? Wayne On 6/1/06, EJ Ciramella [EMAIL PROTECTED] wrote: Hello list! Is there any best practices docs I could be pointed

Override modules listed in parent pom.xml

2006-06-01 Thread EJ Ciramella
Is there a way to override modules listed in the parent pom.xml (via profiles.xml or something)? I'm not sure how to handle if only ONE module has been branched for a particular bug fix.

Changing the version specified in a middle tier module...

2006-06-02 Thread EJ Ciramella
Here's the scenario - we have three levels of modules - top, middle, bottom. In the top level module, that pom says it depends on some snapshot of the middle level module. That middle level module depends on some version of the bottom level module. If the middle tier doesn't change, how can I

Firing off a shellscript prior to unittesting

2006-06-02 Thread EJ Ciramella
Quick question - if I need to have a server started for unittesting (which is started up via a shell script), how does one go about doing this and is this considered safe (I wouldn't consider these unittests personally)?

scripts/bin directory

2006-06-02 Thread EJ Ciramella
According to the following document http://maven.apache.org/guides/introduction/introduction-to-the-standard -directory-layout.html Where are scripts supposed to be located (and where is this mentioned on the site)?

RE: scripts/bin directory

2006-06-02 Thread EJ Ciramella
/descriptor /configuration /plugin /plugins /build But I can't get them copied over... -Original Message- From: Dennis Lundberg [mailto:[EMAIL PROTECTED] Sent: Friday, June 02, 2006 4:59 PM To: Maven Users List Subject: Re: scripts/bin directory EJ Ciramella wrote

One more simple question

2006-06-02 Thread EJ Ciramella
By default, jars are placed in the root of target, how do you move them to target/lib?

RE: One more simple question

2006-06-02 Thread EJ Ciramella
://maven.apache.org/plugins/maven-jar-plugin/jar-mojo.html Set outputDirectory to ${project.build.outputDirectory}/lib in the jar plugin configuration. -Max EJ Ciramella wrote: By default, jars are placed in the root of target, how do you move them to target/lib

RE: One more simple question

2006-06-02 Thread EJ Ciramella
Also, wouldn't it be basedir according to that documentation? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, June 02, 2006 6:46 PM To: Maven Users List Subject: RE: One more simple question [INFO] Trace

RE: One more simple question

2006-06-02 Thread EJ Ciramella
: Friday, June 02, 2006 6:51 PM To: Maven Users List Subject: Re: One more simple question Oh yeah, that's better than my jarName solution. Okay, I think I will stop trying to answer emails today before I give any more lousy advice. :-) -Max EJ Ciramella wrote: Also, wouldn't it be basedir according

RE: One more simple question

2006-06-02 Thread EJ Ciramella
in target/scripts. The developers want to be able to cd into scripts and run somestartscript.sh which looks into the lib directory (../lib) to build up the classpath (just load all jars). Am I approaching this wrong? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent

building assemblies from the top level project directory

2006-06-05 Thread EJ Ciramella
If I have a structure like this: C:\work\projectname And have three modules: C:\work\projectname\utils C:\work\projectname\someproj C:\work\projectname\application The only item that has an assembly is the actual application. Is there some way to build that assembly from the projectname

RE: building assemblies from the top level project directory - binding to lifecycle stages...

2006-06-05 Thread EJ Ciramella
/executions /plugin It doesn't, but is there a way to do something like this? Packaging this particular module should mean build a tarball in addition to the jar with all the classes. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 11:56

RE: building assemblies from the top level project directory - binding to lifecycle stages...

2006-06-05 Thread EJ Ciramella
: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 12:28 PM To: Maven Users List Subject: RE: building assemblies from the top level project directory - binding to lifecycle stages... Shouldn't this work? plugins plugin artifactIdmaven-assembly-plugin/artifactId

[ERROR] ResourceManager ???

2006-06-05 Thread EJ Ciramella
Can anyone explain what maven is attempting to do? [INFO] Velocimacro : adding VMs from VM library template : VM_global_library.vm [ERROR] ResourceManager : unable to find resource 'VM_global_library.vm' in any resource loader. [INFO] Velocimacro : error using VM library template

RE: [M2] can we use 'mvn assembly' instead assembly:assembly

2006-06-05 Thread EJ Ciramella
So if this is the case, if you're sitting at the parent pom level, any module poms break during packaging (because all their paths are relative to their respective poms). Example C:\work\projectname\pom.xml -- parent C:\work\projectname\module1\pom.xml -- module Calling mvn assembly:assembly

RE: [M2] can we use 'mvn assembly' instead assembly:assembly

2006-06-05 Thread EJ Ciramella
All the mvn2 documentation I've seen said you need to explicitly call package THEN assembly, bind it to something later like verify (and use that). http://maven.apache.org/plugins/maven-assembly-plugin/examples/multimodu le/module-binary-inclusion-simple.html NOTE: Because of a quirk in Maven

RE: building assemblies from the top level project directory

2006-06-06 Thread EJ Ciramella
just activate the profile when you can to create the assembly. or if you want... use the -f operator in mvn and point to your application pom. Hope that helps. ^_^ EJ Ciramella wrote: If I have a structure like this: C:\work\projectname And have three modules: C:\work

RE: building assemblies from the top level project directory - binding to lifecycle stages...

2006-06-06 Thread EJ Ciramella
assemblies from the top level project directory - binding to lifecycle stages... Shouldn't there be a goalsgoal//goals inside the executions ? EJ Ciramella wrote: Shouldn't this work? plugins plugin artifactIdmaven-assembly-plugin/artifactId configuration

RE: Maven2 SCM plugin

2006-06-06 Thread EJ Ciramella
How about perforce? -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 11:16 PM To: Maven Users List Subject: Re: Maven2 SCM plugin maven scm:checkout -DconnectionUrl=xuy -Dtag=yourtag -D On 6/5/06, Karthik Manimaran [EMAIL PROTECTED] wrote:

Scm type tasks within maven 2

2006-06-08 Thread EJ Ciramella
Is there any to sync files form perforce (and even better - do something like an rm -rf first? Historically, we've done such things via ant, but I'm having VERY little luck calling maven via ant (via the java ant task). Any suggestions?

RE: building assemblies from the top level project directory

2006-06-08 Thread EJ Ciramella
causes a lot of trouble with people. :-) Cheers, John On 6/6/06, EJ Ciramella [EMAIL PROTECTED] wrote: This is still two stages, there's no way to do this in a single pass? Not everyone will WANT to build up the tar, just release engineering. -Original Message- From: Edwin Punzalan

RE: building assemblies from the top level project directory

2006-06-08 Thread EJ Ciramella
List Subject: Re: building assemblies from the top level project directory On 6/8/06, EJ Ciramella [EMAIL PROTECTED] wrote: 2 - run from the top parent pom level and I wind up with an error as it doesn't understand what target/lib is in relation to the top level Do you have it defined

RE: building assemblies from the top level project directory

2006-06-08 Thread EJ Ciramella
Is there a way to do this folks? -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, June 08, 2006 5:19 PM To: Maven Users List Subject: Re: building assemblies from the top level project directory On 6/8/06, EJ Ciramella [EMAIL PROTECTED] wrote: ${basedir

integration builds and version numbers

2006-06-12 Thread EJ Ciramella
How are people updating their pom.xml files with version numbers from say cruisecontrol? We have two types of codelines (in perforce) here, project and release lines. Everything starts out life as a project then over time one (or more) projects can be integrated to a release line. I'm

RE: Problems with mvn site

2006-06-12 Thread EJ Ciramella
H- I get something similar: [ERROR] BUILD FAILURE [INFO] [INFO] The skin does not exist: Unable to determine the release version Try downloading the file manually from the project website. Then, install it using the

RE: integration builds and version numbers

2006-06-12 Thread EJ Ciramella
Someone must be using CC + M2, no? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Monday, June 12, 2006 8:01 AM To: Maven Users List Subject: integration builds and version numbers How are people updating their pom.xml files with version numbers from say

Shared properties across multiple modules

2006-06-13 Thread EJ Ciramella
Ok - so I'm filtering resources here and there and now it's come to my attention that there are places where there is some duplication. Is there a way to share properties across multiple modules? If so where do you store this? Through tons of testing, I've found this: - properties defined

RE: integration builds and version numbers

2006-06-14 Thread EJ Ciramella
can be done by calling the release goal. Roald Bankras Software Engineer JTeam b.v. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Monday, June 12, 2006 11:30 PM To: Maven Users List Subject: RE: integration builds and version numbers Someone must be using CC + M2

RE: Shared properties across multiple modules

2006-06-14 Thread EJ Ciramella
Any further suggestions about this? This is kind of a pressing issue for me. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 13, 2006 3:57 PM To: Maven Users List Subject: Shared properties across multiple modules Ok - so I'm filtering resources

RE: integration builds and version numbers

2006-06-14 Thread EJ Ciramella
I tried both mvn release and mvn release:release - neither exists. What is the correct goal? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 14, 2006 9:51 AM To: Maven Users List Subject: RE: integration builds and version numbers Where

  1   2   3   4   5   6   7   >