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 dr

RE: overriding properties via -D

2011-05-20 Thread EJ Ciramella
http://goo.gl/ivCZW> 2011/5/19 EJ Ciramella > Yep, I can clearly see that the -D property is NOT overriding the same > property set in a profile. > > Just so I'm clear, there is a profile that has a bunch of settings that we > want ALL of but ONE. On occasion. > >

RE: overriding properties via -D

2011-05-19 Thread EJ Ciramella
greau.com *Auteur du livre **Apache Maven - Maîtriser l'infrastructure d'un projet Java EE* <http://goo.gl/ivCZW> 2011/5/17 EJ Ciramella > For what it's worth, I've stumbled across a series of bugs surrounding this > issue. > > This one either duplicates or i

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 1

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 stanza in it and in turn is setting a property, are you not allowed to override that setting via a -Dfoo=bar commandline

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, 20

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
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 bu

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'v

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 t

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 a

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: orde

RE: Nested artifacts

2011-05-12 Thread EJ Ciramella
that would have been the ultimate solution for me ;-) -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 wrote: > Is there a simple wa

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 buil

RE: Nested artifacts

2011-05-11 Thread EJ Ciramella
path, it should work. Roland [1] http://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

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

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: maven-dependency-plugin (version 2.1) question

2010-09-01 Thread EJ Ciramella
Actually, it very specifically says nothing about dependencies under the copy goal. It merely says "artifacts." There is a difference... 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 clarif

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

2010-08-31 Thread EJ Ciramella
t; Nowhere does it say that it would 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 wrote: > I guess I didn't see it explicitly called o

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

2010-08-31 Thread EJ Ciramella
aven Users List Subject: Re: maven-dependency-plugin (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, E

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

2010-08-31 Thread EJ Ciramella
ven-dependency-plugin/copy-dependencies-mojo.html#excludeTransitive /Anders On Tue, Aug 31, 2010 at 19:33, EJ Ciramella wrote: > I've noticed recently that "copy-dependencies" finds the transitive > dependencies, but "copy" does not. > > Is this intentional? >

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: 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 t

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
d never mess with old releases. /Anders On Tue, Aug 24, 2010 at 20:27, EJ Ciramella wrote: > 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/conflu

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
ssage- 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 wrote: > Yeah, I know - hate to cross-pollinate here but the Nexus bible states the > repo is for de

RE: Correcting a groupID

2010-08-24 Thread EJ Ciramella
4, 2010 2:08 PM To: Maven Users List Subject: Re: Correcting a groupID On 24 August 2010 18:44, EJ Ciramella 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/

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
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? I too have read these EXACT steps before. The guide t

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 tr

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 wrote: > Ahhh - h > > So we have an aggregate pom that lists the parent pom as the first module. > > All other poms make reference to

RE: Maven 3 project ordering

2010-08-24 Thread EJ Ciramella
that's just not in the parent directory. In maven 2, this is not a warning, in maven 3, you just have to put an empty in your tag. Cheers 2010/8/24 Anders Hammar > If you set the relativePath element for the parent section, does it make a > difference? > > /Anders > >

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 by

RE: maven 3 and the enforcer plugin

2010-08-19 Thread EJ Ciramella
ion.html /Anders On Thu, Aug 19, 2010 at 20:26, EJ Ciramella wrote: > 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. >

RE: maven 3 and the enforcer plugin

2010-08-19 Thread EJ Ciramella
3 regression and might need 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 wrote: > 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
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
hursday, August 19, 2010 12:13 PM To: Maven Users List Subject: Re: maven 3 and the enforcer plugin Thanks EJ, On Thu, Aug 19, 2010 at 10:04 AM, EJ Ciramella wrote: > [INFO] > > [INFO] > [INFO] --- maven-enforcer-

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) @ --- [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 Name:

RE: maven 3 and the enforcer plugin

2010-08-18 Thread EJ Ciramella
org/confluence/display/MAVEN/MojoExecutionException 'cmd' is not recognized as an internal or external command, -Original Message- 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:

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 each

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 Subjec

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&#x

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 (twi

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 configu

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: The report dies with this error:

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 n

RE: How do I get started on Maven?

2009-11-10 Thread EJ Ciramella
op a special OSGi build/packaging plugin. 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 le

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

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 is

RE: system scoped dependencies are attempted to be downloaded

2009-11-09 Thread EJ Ciramella
ht... Never the less, 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 wrote: > Well, that's interestin

RE: system scoped dependencies are attempted to be downloaded

2009-11-09 Thread EJ Ciramella
ould work and I frankly don't understand what 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 wrote: > Sorry - and thank you! > > Any

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 wrote: > Yeah, we have a pretty out-of-the-ordin

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 addi

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: s

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]

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 b

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: org.apache.maven.plugins maven-d

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 tags? We

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)?

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

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 and

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.

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: problem combining goals on the command line

2009-10-01 Thread EJ Ciramella
t at least 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

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 usi

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

RE: Random can't find skin failure

2009-09-24 Thread EJ Ciramella
] 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 24, 2009 4:47 PM To: users@maven.apache.org Subject

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]

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.

RE: validate changes document

2009-08-05 Thread EJ Ciramella
ist Subject: Re: validate changes document Sure namespace declaration is needed if you use validation. 2009/8/5 EJ Ciramella : > Nope, is that needed?  And if it is, that should be called out in the > site output for the changes plugin... > > -Original Message- >

RE: validate changes document

2009-08-05 Thread EJ Ciramella
have declared namespaces ? As this : 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 C

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 clear

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

RE: Site inheritance

2009-07-31 Thread EJ Ciramella
ssues open 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 "inherit

RE: Site inheritance

2009-07-30 Thread EJ Ciramella
27;s project. I want the menu 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

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

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.h

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 Repor

RE: dependency version in a property

2009-06-17 Thread EJ Ciramella
unit.version}" in your script invocation. -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 tag and a dependency liste

RE: dependency version in a property

2009-06-17 Thread EJ Ciramella
com] Sent: Wednesday, June 17, 2009 8:10 PM To: Maven Users List Subject: Re: dependency version in a property On Wed, Jun 17, 2009 at 5:06 PM, EJ Ciramella wrote: > I want the other way around :-) > > I have a tag and a dependency listed in there > (all in a parent pom). > >

RE: dependency version in a property

2009-06-17 Thread EJ Ciramella
#x27;Maven Users List' Subject: RE: dependency version in a property Something like this should work: junit junit ${junit.version} test ... ... 4.4 ... - Damon -Original Message- From: EJ Ciramella [mailto:ecirame...@upromise.com] Sent:

dependency version in a property

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

RE: update all projects maven version

2009-06-15 Thread EJ Ciramella
ild-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 > wrote: > >>

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 .config.xml files and just search/replace all the paths to the maven installation directory. I see the CLI bit for hudson, but not sure if this

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
epo\\1.0.0.1\-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] > Se

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: org.apache

RE: Exception during "Dependencies" report.

2009-06-05 Thread EJ Ciramella
I tried upgrading to: org.apache.maven.plugins maven-project-info-reports-plugin 2.1.1 But that's even worse - I can see it just scanning the repositories over and over and over - endlessly. Any suggestions? -Original Message- From: EJ Ciramella [mailto:ec

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: Re:

2009-05-06 Thread EJ Ciramella
lf Of Jörg Schaible Sent: Wednesday, May 06, 2009 7:30 PM To: users@maven.apache.org Subject: Re: 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 of > dependencies. > >

users@maven.apache.org

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 modul

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? true somedir true **/foo.xml true

RE: versus

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 configur

RE: versus

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 custom

RE: versus

2009-04-30 Thread EJ Ciramella
display 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 wrote: > Hello list - quick quesiton (I think) - > > When

versus

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 the

  1   2   3   4   5   6   7   >