RE: overriding properties via -D

2011-05-20 Thread EJ Ciramella
}/key = key444/key Regards. Maxime Gréau. mgreau.com *Auteur du livre **Apache Maven - Maîtriser l'infrastructure d'un projet Java EE* http://goo.gl/ivCZW 2011/5/19 EJ Ciramella ecirame...@casenetinc.com Yep, I can clearly see that the -D property is NOT overriding the same property set

maven plugin quick question

2011-05-20 Thread EJ Ciramella
Hi all - I'm developing a plugin for generating images for the background of an installer (or honestly, for whatever other purpose you need it for). Out of curiosity - would anyone else need something like this? So far, it can insert an infinite amount of (user configurable with an optional

RE: overriding properties via -D

2011-05-19 Thread EJ Ciramella
livre **Apache Maven - Maîtriser l'infrastructure d'un projet Java EE* http://goo.gl/ivCZW 2011/5/17 EJ Ciramella ecirame...@casenetinc.com For what it's worth, I've stumbled across a series of bugs surrounding this issue. This one either duplicates or is duplicated: http://jira.codehaus.org

overriding properties via -D

2011-05-17 Thread EJ Ciramella
Hi all - I've googled around and searched the mailing lists as I think this is a pretty simple thing to do, but didn't find a clear answer. If there is a profile that has a properties stanza in it and in turn is setting a property, are you not allowed to override that setting via a -Dfoo=bar

RE: overriding properties via -D

2011-05-17 Thread EJ Ciramella
For what it's worth, I've stumbled across a series of bugs surrounding this issue. This one either duplicates or is duplicated: http://jira.codehaus.org/browse/MNG-1992 -Original Message- From: EJ Ciramella [mailto:ecirame...@casenetinc.com] Sent: Tuesday, May 17, 2011 11:08 AM

Checkstyle out of memory...

2011-05-13 Thread EJ Ciramella
Hi all - I've recently started to add things like pmd/checkstyle/findbugs to a build pipeline but all of a sudden, when adding mvn checkstyle:checkstyle, I'm getting out of memory exceptions. I've set start/max memory settings to 1024 but I'm still getting this issue. I'm open and all ears to

RE: Checkstyle out of memory...

2011-05-13 Thread EJ Ciramella
Sorry - if it helps, I'm executing checkstyle/pmd/cpd directly, not as part of site output. -Original Message- From: EJ Ciramella [mailto:ecirame...@casenetinc.com] Sent: Friday, May 13, 2011 2:05 PM To: users@maven.apache.org Subject: Checkstyle out of memory... Hi all - I've recently

RE: help - how to reduce the build time using mvn and cargo

2011-05-13 Thread EJ Ciramella
Or, revisit what is going in there... Are there images and files that the end user no longer can access? How much cruft is in there exactly and how much can you yank out? Are there dependencies that can be removed? Are you saying the actual zipping process takes 7 min or the entire warfile

RE: help - how to reduce the build time using mvn and cargo

2011-05-13 Thread EJ Ciramella
Heh - I see 30 dependencies mentioned below, is this a trick answer? (sorry, trolling as I wait for posts to my questions) -Original Message- From: Ron Wheeler [mailto:rwhee...@artifact-software.com] Sent: Friday, May 13, 2011 5:08 PM To: users@maven.apache.org Subject: Re: help - how to

RE: help - how to reduce the build time using mvn and cargo

2011-05-13 Thread EJ Ciramella
100 points to Ron. Ron touched on something here - not sure if you can look at any of the transitive dependencies you may be pulling in and see if you can exclude some of those as well. -Original Message- From: Ron Wheeler [mailto:rwhee...@artifact-software.com] Sent: Friday, May 13,

RE: Nested artifacts

2011-05-12 Thread EJ Ciramella
;-) -Original Message- From: Wendy Smoak [mailto:wsm...@gmail.com] Sent: Wednesday, May 11, 2011 4:28 PM To: Maven Users List Subject: Re: Nested artifacts On Tue, May 10, 2011 at 3:19 PM, EJ Ciramella ecirame...@casenetinc.com wrote: Is there a simple way to unpack a dependency then unpack

RE: order of the unpacking from unpack-dependencys

2011-05-12 Thread EJ Ciramella
If you have multiple unpack steps, what are their ID's? Or are you saying you have one unpack step with multiple artifacts given? -Original Message- From: David Bräutigam [mailto:david.braeuti...@googlemail.com] Sent: Thursday, May 12, 2011 9:53 AM To: users@maven.apache.org Subject:

RE: help - how to reduce the build time using mvn and cargo

2011-05-12 Thread EJ Ciramella
I giggled at the first few replies to this thread, but now I'm curious - when you're finished building, and maven presents the summary output, which modules are taking the longest time and what exactly are they doing? Hi, I am using maven 2.2.1 with cargo plugin to deploy into the local and

RE: Nested artifacts

2011-05-11 Thread EJ Ciramella
://maven.apache.org/plugins/maven-dependency-plugin/unpack-mojo.html [2] http://maven.apache.org/plugins/maven-dependency-plugin/usage.html#The_dependency:unpack_mojo On 20:59, EJ Ciramella wrote: Is there a simple way to unpack a dependency then unpack an artifact that lives inside

RE: How to skip phases?

2011-05-11 Thread EJ Ciramella
Starting and stopping maven like that will be slower than just doing a mvn clean install to begin with. If you're relying on svn updates (or similar kinda thing via your SCM system), you'll need to run clean first (I'd suspect) anyway. If you're doing an rm -rf of your workspace prior to

Nested artifacts

2011-05-10 Thread EJ Ciramella
Is there a simple way to unpack a dependency then unpack an artifact that lives inside that dependency? We have several third party utilities stored in Nexus and referenced as dependencies, but I'd like to unpack a rar that is nested within a zip. Is there a maven 2 way or do I just rely on an

RE: How can I have a goal depend on another goal?

2011-05-10 Thread EJ Ciramella
FWIW - deploy and install are generally overused/overloaded terms. When talking about a mvn deploy this implies deploying a project's artifacts to the internal (ie: not local) repository. mvn install deploys the same artifacts to the local repository. Is this truly the desired behavior?

RE: maven-dependency-plugin (version 2.1) question

2010-09-01 Thread EJ Ciramella
snip Actually, it very specifically says nothing about dependencies under the copy goal. It merely says artifacts. There is a difference... /snip This is why maven is so polarizing - either you love it or hate it. specifically saying nothing - it should be explicit... Thanks again all for the

maven-dependency-plugin (version 2.1) question

2010-08-31 Thread EJ Ciramella
I've noticed recently that copy-dependencies finds the transitive dependencies, but copy does not. Is this intentional? We'd like to NOT have to repeat a majority of the dependencies when just using copy as the full list of transitive dependencies is bigger than what's needed.

RE: maven-dependency-plugin (version 2.1) question

2010-08-31 Thread EJ Ciramella
-dependencies-mojo.html#excludeTransitive /Anders On Tue, Aug 31, 2010 at 19:33, EJ Ciramella ecirame...@casenetinc.comwrote: I've noticed recently that copy-dependencies finds the transitive dependencies, but copy does not. Is this intentional? We'd like to NOT have to repeat a majority

RE: maven-dependency-plugin (version 2.1) question

2010-08-31 Thread EJ Ciramella
(version 2.1) question I don't think I follow. Do you want to use the copy goal and have transitive deps included? That's not possible according to the docs. Why not use the copy-dependencies goal? /Anders On Tue, Aug 31, 2010 at 21:20, EJ Ciramella ecirame...@casenetinc.comwrote: That's

RE: maven-dependency-plugin (version 2.1) question

2010-08-31 Thread EJ Ciramella
include transitive dependencies. However, if you don't think its clear enough, please file an enhancement request on the plugin with a patch. /Anders On Tue, Aug 31, 2010 at 21:44, EJ Ciramella ecirame...@casenetinc.comwrote: I guess I didn't see it explicitly called out in the docs anywhere

RE: Ear plugin issue

2010-08-26 Thread EJ Ciramella
With -X -e, is it any clearer as to what it's looking for? What the GAV is? -Original Message- From: nishant@hsbcib.com [mailto:nishant@hsbcib.com] Sent: Thursday, August 26, 2010 1:37 PM To: Maven Users List Cc: Maven Users List Subject: Re: Ear plugin issue Just that unable

RE: Maven 3 project ordering

2010-08-24 Thread EJ Ciramella
On Mon, Aug 23, 2010 at 18:03, EJ Ciramella ecirame...@casenetinc.com wrote: Hello again list - was hoping to NOT be sending all these maven 3 questions...but. So we have a parental pom that listed as the top module in the top level pom. In maven 2, the build just chugs along

RE: Maven 3 project ordering

2010-08-24 Thread EJ Ciramella
) then would exist in the remote repo and can be fetched by Maven as any other artifact. /Anders On Tue, Aug 24, 2010 at 14:54, EJ Ciramella ecirame...@casenetinc.comwrote: Ahhh - h So we have an aggregate pom that lists the parent pom as the first module. All other poms make reference

Report plugin request

2010-08-24 Thread EJ Ciramella
Not sure if this is the place to do it, but could the powers that be enforce that the site output of any of the reporting type plugins include the report as well? Is that a difficult thing to enforce? CONFIDENTIALITY NOTICE: This e-mail and the information

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
snip That is definitely NOT the way to handle it. Once released, artifacts (including pom files) must not change. Why do you think this should/must be done?? Is it merely a poor assumption on your part, or were you told this or read it somewhere? /snip I too have read these EXACT steps before.

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
Yeah, I know - hate to cross-pollinate here but the Nexus bible states the repo is for deposits only. Essentially backing up the just change NEW snapshots/releases, leave the old ones where they are sentiment. In another life, I casually agreed we should change the groupId of an artifact and

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
Users List Subject: Re: Correcting a groupID On 24 August 2010 18:44, EJ Ciramella ecirame...@casenetinc.com wrote: Yeah, I know - hate to cross-pollinate here but the Nexus bible states the repo is for deposits only. Essentially backing up the just change NEW snapshots/releases, leave the old

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
- From: sebb [mailto:seb...@gmail.com] Sent: Tuesday, August 24, 2010 2:08 PM To: Maven Users List Subject: Re: Correcting a groupID On 24 August 2010 18:44, EJ Ciramella ecirame...@casenetinc.com wrote: Yeah, I know - hate to cross-pollinate here but the Nexus bible states the repo

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
On Tue, Aug 24, 2010 at 20:27, EJ Ciramella ecirame...@casenetinc.comwrote: Additionally, when I was done crying myself to sleep over this failure, I went in search of a repo manager that allowed an easy way to do this in the future: http://wiki.jfrog.org/confluence/display/RTF/Moving

Maven 3 project ordering

2010-08-23 Thread EJ Ciramella
Hello again list - was hoping to NOT be sending all these maven 3 questions...but. So we have a parental pom that listed as the top module in the top level pom. In maven 2, the build just chugs along successfully and handles this no problem. In maven 3, however, somehow maven jumps right

RE: maven 3 and the enforcer plugin

2010-08-19 Thread EJ Ciramella
[INFO] [INFO] [INFO] --- maven-enforcer-plugin:1.0-beta-1:display-info (default-cli) @ foo --- [INFO] Maven Version: 3.0-beta-2 [INFO] JDK Version: 1.5.0_18 normalized as: 1.5.0-18 [INFO] OS Info: Arch: x86 Family: windows

RE: maven 3 and the enforcer plugin

2010-08-19 Thread EJ Ciramella
and the enforcer plugin Thanks EJ, On Thu, Aug 19, 2010 at 10:04 AM, EJ Ciramella ecirame...@casenetinc.com wrote: [INFO] [INFO] [INFO] --- maven-enforcer-plugin:1.0-beta-1:display-info (default-cli) @ foo --- [INFO] Maven Version

RE: maven 3 and the enforcer plugin

2010-08-19 Thread EJ Ciramella
The move to use a hyphen is backward compatible thankfully :-) -Original Message- From: Jesse Farinacci [mailto:jie...@gmail.com] Sent: Thursday, August 19, 2010 1:50 PM To: Maven Users List Subject: Re: maven 3 and the enforcer plugin Hi, On Thu, Aug 19, 2010 at 1:41 PM, EJ Ciramella

RE: maven 3 and the enforcer plugin

2010-08-19 Thread EJ Ciramella
to be fixed there (and not in the plugin). Creating a ticket for both projects and linking them together would probably be a good idea. /Anders On Thu, Aug 19, 2010 at 19:49, Jesse Farinacci jie...@gmail.com wrote: Hi, On Thu, Aug 19, 2010 at 1:41 PM, EJ Ciramella ecirame...@casenetinc.com wrote

RE: maven 3 and the enforcer plugin

2010-08-19 Thread EJ Ciramella
19, 2010 at 20:26, EJ Ciramella ecirame...@casenetinc.comwrote: Ok, so now I'm confused - using a hyphen allows both 2.2.1 AND 3-Something-beta-2 to work. So is this a bug? I'd think it's a bug with the enforcer plugin around its normalization. Let me know what action you guys would like

RE: maven 3 and the enforcer plugin

2010-08-18 Thread EJ Ciramella
- From: bmat...@gmail.com [mailto:bmat...@gmail.com] On Behalf Of Baptiste MATHUS Sent: Wednesday, August 18, 2010 8:56 AM To: Maven Users List Subject: Re: maven 3 and the enforcer plugin Le 16 août 2010 19:21:14 UTC+2, EJ Ciramella ecirame...@casenetinc.com a écrit : Hello list - I've noticed

maven 3 and the enforcer plugin

2010-08-16 Thread EJ Ciramella
Hello list - I've noticed during upgrade testing that maven 3 and the enforcer plugin (1.0-beta-1) is starting to fail a jdk enforcement test. I've set it up to accept 1.5.0_18 and beyond (nothing earlier) but now it's failing even though I'm running that exact jdk. Any suggestions?

RE: Deployment Properties file

2010-02-18 Thread EJ Ciramella
Profiles are used to just swap between configurations, run plugins that normally don't run, etc. Stuff you'd like to be able to switch on and off. If your goal is to just load properties, that seems like a good approach. Now if you had a properties file for each server type, then you'd put

relocation tags

2010-02-01 Thread EJ Ciramella
So if we've relocated a library here - and deployed once to archiva, is it too late to use the relocation tag? We've corrected a bunch of group ids, and wanted to break the build. Instead, by not using the relocate tags, we've gained other errors and some silent inclusions of the same jar

RE: relocation tags

2010-02-01 Thread EJ Ciramella
Also - how do you really leverage these tags? Do you put it in a version of the module in its old location? -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Monday, February 01, 2010 3:35 PM To: users@maven.apache.org Subject: relocation tags So if we've

RE: relocation tags

2010-02-01 Thread EJ Ciramella
Nvm - I found this mini-site: http://maven.apache.org/guides/mini/guide-relocation.html I'd love a shot at updating that tho ;-) -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Monday, February 01, 2010 3:51 PM To: users@maven.apache.org Subject: RE

Where maven is finding a given repository

2010-01-22 Thread EJ Ciramella
Hi list - We are using archiva in house and have a repository grouping proxy set up, but - for some reason, one project is trying to find an internal pom out on repo 1. Is there a good way to get maven to spit out where (in which settings.xml file or pom.xml file) it's finding the repo1

taglist report looking at/into xml files

2009-12-10 Thread EJ Ciramella
It appears that the taglist report is trying to validate some hibernate config we have in our resources directory. One file in question is blowing up the report, is it possible to skip this single file? The problem lines look like this: join table=t_foo key column= id unique=true /

RE: How do I get started on Maven?

2009-11-10 Thread EJ Ciramella
1) How many .pom files do I need and at what level should they be at, can someone copy and paste my directory structure and detail where the .pom files should be? -- From the hip, at least 5 (one for each module and one aggregator pom at the top level) - but depending on what else your company

RE: How do I get started on Maven?

2009-11-10 Thread EJ Ciramella
P.S. - the further away from the SOP maven way you find yourself, the more painful your existence will be. You may wanna listen to this particular podcast (javaposse): Roundup 09 - Maven Without Pain? http://javaposse.com/index.php?post_id=503964 -Original Message- From: EJ Ciramella

RE: How do I get started on Maven?

2009-11-10 Thread EJ Ciramella
. Thanks, Chris EJ Ciramella-3 wrote: 1) How many .pom files do I need and at what level should they be at, can someone copy and paste my directory structure and detail where the .pom files should be? -- From the hip, at least 5 (one for each module and one aggregator pom at the top level

RE: Multi-Module Project and Release Plugin

2009-11-10 Thread EJ Ciramella
I personally never use the release plugin (another case of the maven way not fitting with our way), but I wonder, if you ran mvn site, wouldn't each step along the way not only generate site output, but also have links to the scm details for that particular tier? If that's the case, why not

RE: maven-dependency-plugin:unpack-dependencies doesn't always work

2009-11-09 Thread EJ Ciramella
Nope - there are no markers created. Period. Good thinking though! Any other suggestions what may be wrong with this artifact? It opens just fine in winzip. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For

RE: system scoped dependencies are attempted to be downloaded

2009-11-09 Thread EJ Ciramella
dependencies are attempted to be downloaded Ok. In the future, it would be great if you include this kind of info when you ask about a problem. You need to provide all info for us to be able to help. /Anders On Fri, Nov 6, 2009 at 23:47, EJ Ciramella ecirame...@upromise.com wrote: Yeah, we have a pretty

RE: system scoped dependencies are attempted to be downloaded

2009-11-09 Thread EJ Ciramella
you're doing. That is not the Maven way. You should add the jar (artifact) extracted from the archive to you (corporate) repository instead. /Anders On Mon, Nov 9, 2009 at 18:07, EJ Ciramella ecirame...@upromise.com wrote: Sorry - and thank you! Any suggestions or is this (confirmed as a) a bug

RE: system scoped dependencies are attempted to be downloaded

2009-11-09 Thread EJ Ciramella
, it's the way to go I think. It might be of interest for you that there is a JBoss jira for creating an EAP repo and the rumor has it there is actually some work going on. /Anders On Mon, Nov 9, 2009 at 19:53, EJ Ciramella ecirame...@upromise.com wrote: Well, that's interesting - here's the thing

maven-dependency-plugin:unpack-dependencies doesn't always work

2009-11-05 Thread EJ Ciramella
I'm having a bit of difficulty with unpacking some dependencies - and I'm not entirely sure why this process is failing. In _some_ projects, we define the dependency we'd like to unpack within the plugin configuration - like this: plugin

system scoped dependencies are attempted to be downloaded

2009-11-05 Thread EJ Ciramella
Hello again all - I've recently had my hand forced and we _need_ to use a system scoped dependency. The file is sitting right in front of my eyes, yet maven tries still to download the jar from the repository. I'm strictly using maven, but it seems like this patch/bug may be related to core

RE: system scoped dependencies are attempted to be downloaded

2009-11-05 Thread EJ Ciramella
Actually, this problem seems more related to: http://jira.codehaus.org/browse/MNG-2017 It says it's closed for version 2.0.9 (the version of maven we're using here), but I'm still seeing this issue. -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Thursday

RE: system scoped dependencies are attempted to be downloaded

2009-11-05 Thread EJ Ciramella
I've tried this with mvn 2.0.9, 2.0.10 and 2.2.1 and all three are exhibiting this problem - is this an issue with a plugin? -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Thursday, November 05, 2009 10:32 PM To: users@maven.apache.org Subject: RE: system

exploded war only

2009-11-04 Thread EJ Ciramella
Is there an easy way to make a war project ONLY generate the exploded form (vs both exploded AND non-exploded)?

all assemblies run - always

2009-11-04 Thread EJ Ciramella
Hello again list - sorry for that quick worded question, but here's another (semi-related) one: When you have an assembly defined as part of the standard build plugin section AND another one nestled away in a profile, how can you avoid running the default one that's in the standard build tags?

RE: Hosting a local repo w/out a Repo Manager?

2009-10-16 Thread EJ Ciramella
I second this opinion (repository manager is the way to go). We started by sharing a local repo and after about oh, say, a week, I was all set with that. Then we tried the deploy mechanism to just a file share on another server. Gave up on that in another week. Then I put archiva in place

RE: Hosting a local repo w/out a Repo Manager?

2009-10-16 Thread EJ Ciramella
So you don't drown in all this kool-aid being sloshed at you - think of it another way. I'd like to think of a repo manager as part of using maven 2. Build infrastructures are no longer sprinkle make all over the place and glue it all together with perl. They've evolved greatly since those

release notes for plugins

2009-10-07 Thread EJ Ciramella
Is there a report (like the changes report) that the various plugins (things like the war plugin) run? I'm going through the process of upgrading to 2.2.1 of maven (from 2.0.9) and want to see what's actually changed versus just building and diffing my brains out.

problem combining goals on the command line

2009-10-01 Thread EJ Ciramella
Hi again list - I'm having an issue when I combine three goals on the command line (clean install site). What happens is I get an error about a the common jar (this is a multi module project with a common jar, ejbs, a war and an ear) not being available yet. Any suggestions? We're

RE: problem combining goals on the command line

2009-10-01 Thread EJ Ciramella
one file. Any other suggestions? -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Thursday, October 01, 2009 1:36 PM To: users@maven.apache.org Subject: problem combining goals on the command line Hi again list - I'm having an issue when I combine three

RE: problem combining goals on the command line

2009-10-01 Thread EJ Ciramella
Well, I stumbled across my own error. Apparently, in a multi-module I need to specify which type of javadoc to run; aggregate or non-aggregate mode javadoc. Turning on non-aggregate mode solves my problem. Hope this helps someone else!

RE: Random can't find skin failure

2009-09-25 Thread EJ Ciramella
Any suggestions anyone? This is only happening when building via Hudson and multiple executors running at once. -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Thursday, September 24, 2009 4:57 PM To: users@maven.apache.org Subject: RE: Random can't find

Random can't find skin failure

2009-09-24 Thread EJ Ciramella
Hello list - I'm struggling a bit with the enclosed error. I see this almost randomly while building in Hudson against our Archiva repository: [INFO] [ERROR] BUILD FAILURE [INFO]

RE: Random can't find skin failure

2009-09-24 Thread EJ Ciramella
/pare ntmodule-1.0-20090330.141907-1-site.xml [INFO] artifact org.apache.maven.skins:maven-default-skin: checking for updates from bertha... What makes maven go look for the site skins there? -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Thursday, September

maven-changelog-plugin and perforce

2009-09-18 Thread EJ Ciramella
Hi all - Are any of you running this report against perforce _and_ using labels by any chance? I keep seeing this general exception: [INFO] [ERROR] BUILD ERROR [INFO]

dependency:tree

2009-09-15 Thread EJ Ciramella
Hello list - Out of curiosity, is there a way to only display the module and its conflicts versus the entire tree? I could run the output through grep, but I like the actual tree drawing this plugin does.

validate changes document

2009-08-05 Thread EJ Ciramella
Hello all - I'd like to leverage the validate-changes part of the maven-changes-plugin, but no matter what I do, I get this: Caused by: org.apache.maven.plugin.changes.schema.SchemaValidatorException: SAXException : cvc-elt.1: Cannot find the declaration of element 'document'. Even when

RE: validate changes document

2009-08-05 Thread EJ Ciramella
have declared namespaces ? As this : document xmlns=http://maven.apache.org/changes/1.0.0; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://maven.apache.org/changes/1.0.0 http://maven.apache.org/xsd/changes-1.0.0.xsd; -- Olivier 2009/8/5 EJ Ciramella ecirame

RE: validate changes document

2009-08-05 Thread EJ Ciramella
: validate changes document Sure namespace declaration is needed if you use validation. 2009/8/5 EJ Ciramella ecirame...@upromise.com: Nope, is that needed?  And if it is, that should be called out in the site output for the changes plugin... -Original Message- From: Olivier Lamy

RE: Site inheritance

2009-07-31 Thread EJ Ciramella
regarding inheritance [1] even though they are not on my short list for this release. Cheers, -Lukas [1] http://jira.codehaus.org/browse/MSITE/component/12943 EJ Ciramella wrote: Maybe I got ahead of myself - I tried setting (in the parent project site descriptor) the inheritAsRef='true

xradar

2009-07-31 Thread EJ Ciramella
Is anyone on this list familiar with the xradar set of reports? I'm trying to get this going for project branches (so people can capture problems quickly) and have sonar fed from mainline projects. It's almost looking like having the project branches feed sonar would just be easier

Site inheritance

2009-07-30 Thread EJ Ciramella
Hello all - I'm forging forward (after the semi-informal poll about site doc format options) with a very vanillia apt set up for now and I'm trying to inherit a skeleton site project. I can see this is possible: http://maven.apache.org/plugins/maven-site-plugin/examples/sitedescripto r.html

RE: Site inheritance

2009-07-30 Thread EJ Ciramella
Lol - ok, I think I figured this out... In the _parent_ project's site descriptor, I defined a menu as inherit-able and now it's showing up in the child site output. This should be more clearly spelled out in the site plugin doc set... -Original Message- From: EJ Ciramella

RE: Site inheritance

2009-07-30 Thread EJ Ciramella
bits but the actual apt file will live in the child projects. Is this possible? -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Friday, July 31, 2009 12:01 AM To: Maven Users List Subject: RE: Site inheritance Lol - ok, I think I figured this out

RE: Site documentation format choosing

2009-07-29 Thread EJ Ciramella
Thanks everyone for the debate for me to watch - I just kinda sat back and ate popcorn while you guys battled it out. Here are what I've captured: 1 - people like apt for its simplicity (me too) - I can see how easy it would be to diff various versions in your SCM tool. You'd not see tags, just

Site documentation format choosing

2009-07-28 Thread EJ Ciramella
So a discussion has popped up here as to why use apt, xdoc or fml over just plain html. I (personally) think it's easier to just throw together APT docs REALLY fast and not worry about various components (css and such). How do I sell apt as the format to use?

RE: [ANN] Maven Reporting Implementation 2.0.4.2 Released

2009-07-24 Thread EJ Ciramella
Woah - a four digit build number? Is this now supported in maven 2 (wrt ranges and such)? -Original Message- From: Dennis Lundberg [mailto:denn...@apache.org] Sent: Fri 7/24/2009 2:54 AM To: annou...@maven.apache.org; Maven Users List Cc: Maven Developers List Subject: [ANN] Maven

dependency version in a property

2009-06-17 Thread EJ Ciramella
Is there a way to get a dependency version in a property?

RE: dependency version in a property

2009-06-17 Thread EJ Ciramella
/build ... properties ... junit.version4.4/junit.version ... /properties - Damon -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Wednesday, June 17, 2009 4:54 PM To: users@maven.apache.org Subject: dependency version in a property Is there a way to get

RE: dependency version in a property

2009-06-17 Thread EJ Ciramella
Hmmm - I cheated I guess. The jar in question is being put in a lib directory and because I control that via the assembly descriptor, I just use the outputFileNameMapping option and stripped out the version. /shrug -Original Message- From: Wendy Smoak [mailto:wsm...@gmail.com] Sent:

RE: dependency version in a property

2009-06-17 Thread EJ Ciramella
. -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Wednesday, June 17, 2009 5:07 PM To: Maven Users List Subject: RE: dependency version in a property I want the other way around :-) I have a dependencyManagement tag and a dependency listed in there (all in a parent

RE: update all projects maven version

2009-06-15 Thread EJ Ciramella
-plugin/update-child-modules-mo jo.htmlYou change the version in the reactor and you call mvn versions:update-child-modules Cheers, Arnaud # Arnaud Héritier # http://blog.aheritier.net On Sat, Jun 13, 2009 at 5:42 PM, EJ Ciramella ecirame...@upromise.comwrote: Is there a way

update all projects maven version

2009-06-13 Thread EJ Ciramella
Is there a way to programattically update all the projects maven version (or jdk or ant or w/e else)? With cruise control, we'd just check out 20 or so projname.config.xml files and just search/replace all the paths to the maven installation directory. I see the CLI bit for hudson, but not

dependency:unpack not preserving file mode settings

2009-06-12 Thread EJ Ciramella
I have an artifact that has a series of scripts that have specific file mode settings on them. When a consumer project uses dependency:unpack, I can see that those filemode settings are removed. Is this a known issue? If so - are there any known work arounds?

RE: Exception during Dependencies report.

2009-06-10 Thread EJ Ciramella
\modulename-1.0.0.1.jar Did you try running with -X to see where it comes from? HTH, -Lukas EJ Ciramella wrote: Any feedback? I didn't see any associated jira's... -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Friday, June 05, 2009 1:20 PM

RE: Exception during Dependencies report.

2009-06-09 Thread EJ Ciramella
Any feedback? I didn't see any associated jira's... -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Friday, June 05, 2009 1:20 PM To: Maven Users List Subject: RE: Exception during Dependencies report. I tried upgrading to: groupIdorg.apache.maven.plugins

Exception during Dependencies report.

2009-06-05 Thread EJ Ciramella
I'm really confused as to why maven is all of a sudden looking at a jar and complaining it's not a pom - any suggestions anyone? [INFO] Generating Source Repository report. [INFO] Generating Issue Tracking report. [INFO] Generating Project Summary report. [INFO] Generating Project Plugins

RE: Exception during Dependencies report.

2009-06-05 Thread EJ Ciramella
- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent: Friday, June 05, 2009 10:36 AM To: users@maven.apache.org Subject: Exception during Dependencies report. I'm really confused as to why maven is all of a sudden looking at a jar and complaining it's not a pom - any suggestions anyone

dependencyManagement

2009-05-06 Thread EJ Ciramella
I have a quick question about dependencyManagement - if moduleA has a dependencyManagement tag that pulls in a pom that has a bunch of dependencies. ModuleB depends on moduleA. During a build of ModuleB, I can see it trying to get at the pom specified in the dependencyManagement section of

RE: Re: dependencyManagement

2009-05-06 Thread EJ Ciramella
...@ger.gmane.org] On Behalf Of Jörg Schaible Sent: Wednesday, May 06, 2009 7:30 PM To: users@maven.apache.org Subject: Re: dependencyManagement EJ Ciramella wrote: I have a quick question about dependencyManagement - if moduleA has a dependencyManagement tag that pulls in a pom that has a bunch

dependencySets not filtering during unpacking

2009-05-04 Thread EJ Ciramella
Hello, has anyone else run into this problem where a dependencySet isn't filtering during unpacking of a dependency? dependencySet useStrictFilteringtrue/useStrictFiltering outputDirectorysomedir/outputDirectory unpacktrue/unpack

RE: resources versus assembly

2009-05-01 Thread EJ Ciramella
No, the war file stays the same, the configuration files we need for the different environments (OTAP) are inside the tar.gz file. EJC This is where I'm getting hung up - if you have MANY environments, and your tar.gz takes as long as 1 hour to build, why bundle something as small as

RE: resources versus assembly

2009-04-30 Thread EJ Ciramella
the current version on a status page. Two different things. With regards, Nick Stolwijk ~Java Developer~ Iprofs BV. Claus Sluterweg 125 2012 WS Haarlem www.iprofs.nl On Wed, Apr 29, 2009 at 10:06 PM, EJ Ciramella ecirame...@upromise.com wrote: Hello list - quick quesiton (I think) - When

RE: resources versus assembly

2009-04-30 Thread EJ Ciramella
Resources are included in your jar/war file, while an assembly creates a zip or tar.gz file EJC - yep - I got that, but both the resources stanza and the assembly descriptor(s) can filter files. We have a process where we want the build to generate a war file, but hand that off to another

resources versus assembly

2009-04-29 Thread EJ Ciramella
Hello list - quick quesiton (I think) - When should one choose to process resources versus using an assembly descriptor (with filtering on or off - depending on what you want)?

RE: filtering site resources?

2009-04-01 Thread EJ Ciramella
Yeah, we struggled with this too - and being forced to only use velocity properties was a deal breaker for us (all of our properties are in the foo.bar style). On a side project, I simply put site template files in the resources directory and process them to the src/site directory where I want

  1   2   3   4   5   6   7   >