RE: URL inheritance

2008-03-14 Thread Brian E. Fox
See here and the linked thread: http://jira.codehaus.org/browse/MNG-3244 -Original Message- From: Croteau, Jean-Francois [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 10:56 AM To: users@maven.apache.org Subject: URL inheritance Hi all, When using a parent and a child pom, is

RE: Execute only a specific phase

2008-03-14 Thread Brian E. Fox
You can't do that. What you could attempt to do is call the plugin:goal that might be bound to this phase. Like jar:package. -Original Message- From: Doron Solomon [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 2:57 PM To: users@maven.apache.org Subject: Execute only a specific

RE: Copy:unpack

2008-03-14 Thread Brian E. Fox
of the resource, shouldn't it just be in the dependency stanza? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 11:39 AM To: Maven Users List Subject: RE: Copy:unpack Ok, I thought you wanted to exclude files. If you want to filter them, then you can

RE: Copy:unpack

2008-03-14 Thread Brian E. Fox
version info in two places? The remote-resources plugin seems to want its own copy of the version of the resource, shouldn't it just be in the dependency stanza? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 11:39 AM To: Maven Users List Subject

RE: dependencyManagement, pluginManagement, artifactManagement?

2008-03-14 Thread Brian E. Fox
Yes. Put it inside a dependencyManagment section and then don't specify a version where you use it. If you do specify a version, it will use that one...the depMgt is only used if no version is declared elsewhere. -Original Message- From: deckrider [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: Copy:unpack

2008-03-14 Thread Brian E. Fox
to want its own copy of the version of the resource, shouldn't it just be in the dependency stanza? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 11:39 AM To: Maven Users List Subject: RE: Copy:unpack Ok, I thought you wanted to exclude files

RE: Copy:unpack

2008-03-14 Thread Brian E. Fox
stanza? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 11:39 AM To: Maven Users List Subject: RE: Copy:unpack Ok, I thought you wanted to exclude files. If you want to filter them, then you can use the remote-resources plugin, the dependency

RE: dependencyManagement, pluginManagement, artifactManagement?

2008-03-14 Thread Brian E. Fox
DepMgt is the right way... -Original Message- From: simon [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 4:14 PM To: Maven Users List Subject: Re: dependencyManagement, pluginManagement, artifactManagement? I expect you can define a property in a parent pom and reference it from

RE: Copy:unpack

2008-03-14 Thread Brian E. Fox
2 - verified that I can pull it down (still not thrilled about listing version twice in the same pom). The plugin should look up the version like dependency:unpack Can you file a jira? - To unsubscribe, e-mail: [EMAIL

RE: Copy:unpack

2008-03-14 Thread Brian E. Fox
Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 8:17 PM To: Maven Users List Subject: RE: Copy:unpack 2 - verified that I can pull it down (still not thrilled about listing version twice in the same pom). The plugin should look up the version like

RE: How to run a script from a pom.xml file?

2008-03-13 Thread Brian E. Fox
/configuration /plugin -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2008 5:02 PM To: Maven Users List Subject: RE: How to run a script from a pom.xml file? Fyi, the inherited in the execution block does not work, but it does work in the plugin

RE: Copy:unpack

2008-03-13 Thread Brian E. Fox
Yes. You need 2.0 and then there are includes/excludes filters. Check the site, I forget the exact names. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 9:42 PM To: users@maven.apache.org Subject: Copy:unpack Is there a way to use the

RE: Compilation failure

2008-03-13 Thread Brian E. Fox
There should normally be an error above that telling you the output from the compiler. -Original Message- From: edward yoon [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 10:50 PM To: users@maven.apache.org Subject: Compilation failure Hi, i'm newbie in here. I tried maven

RE: plugin configured across all maven 2 modules

2008-03-12 Thread Brian E. Fox
All your projects should derive from an internal corporate pom that acts as your internal super-pom in a sense. Then you can put things like this that you want across your organization. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2008 2:28

RE: Version Range Specification

2008-03-12 Thread Brian E. Fox
Perhaps some other dependency wants another version? Try putting it back without the brackets and run dependency:tree to see what you get. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2008 11:14 AM To: users@maven.apache.org Subject:

RE: plugin configured across all maven 2 modules

2008-03-12 Thread Brian E. Fox
. Unless of course you're using SNAPSHOTs for your top-leve corporate parent pom, which at least for us is pretty uncommon... Wayne On 3/12/08, Brian E. Fox [EMAIL PROTECTED] wrote: All your projects should derive from an internal corporate pom that acts as your internal super-pom in a sense

RE: plugin dependencies question

2008-03-12 Thread Brian E. Fox
Yes. Compile against foobar normally. The users can specify the dependency they want in the plugin configuration block. This is working in 2.0.9, you can see http://jira.codehaus.org/browse/MNG-3426 and http://jira.codehaus.org/browse/MNG-2972 for more information. In this way you can say your

RE: RE: Version Range Specification

2008-03-12 Thread Brian E. Fox
This may be a bug where it can't satisfy the locked down version for some reason and the error isn't telling you the right thing. Lets work through it to see why and then maybe a jira will come from it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

RE: Adding goals to pom.xml

2008-03-12 Thread Brian E. Fox
You can't create new targets in Maven2 without making a plugin. The targets maven2 understands are either phase or plugin:goal -Original Message- From: david delbecq [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2008 6:12 PM To: Maven Users List Subject: Adding goals to pom.xml

RE: plugin configured across all maven 2 modules

2008-03-12 Thread Brian E. Fox
all maven 2 modules But then if the plugin version changes, then we have to go through all the other poms that have a parent pom version and update them as well. Seems like an awful lot of work... Is this truly the only way? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED

RE: Is it possible to have multiple changes.xml files?

2008-03-12 Thread Brian E. Fox
Each team must have their own module right? You could have each module generate its own changes report. -Original Message- From: Gunnar Boström [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2008 7:11 PM To: users@maven.apache.org Subject: Is it possible to have multiple

RE: plugin dependencies question

2008-03-12 Thread Brian E. Fox
Handy, isn't it? -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2008 7:18 PM To: Maven Users List Subject: Re: plugin dependencies question That's new in 2.0.9. Well, not new, but now it works. ;-) Wayne On 3/12/08, Brian E. Fox [EMAIL

RE: How to run a script from a pom.xml file?

2008-03-12 Thread Brian E. Fox
Fyi, the inherited in the execution block does not work, but it does work in the plugin block. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2008 7:55 PM To: Maven Users List Subject: Re: How to run a script from a pom.xml file? On Wed, Mar

RE: plugin dependencies question

2008-03-12 Thread Brian E. Fox
dependencies question I see there's only 5 issues outstanding left for 2.0.9. Does anyone know when the expected release date is? Thanks so much! On Wed, 2008-03-12 at 19:22 -0400, Brian E. Fox wrote: Handy, isn't it? -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED

RE: Release process

2008-03-11 Thread Brian E. Fox
they will be copied during the release process. Or am I wrong and doesn't understand nothing at all :-) Luca Brian E Fox wrote: Are these resources not inside your scm? Why would they not be picked up from the checkout folder? Are you using absolute paths or something? Something is fishy here because

RE: Please help - Injecting a custom plugin parameter

2008-03-11 Thread Brian E. Fox
The plugin properties are injected at runtime from the project they run on. The properties defined in the plugin's pom are used to build the plugin not run it. You could do this, just in a different way. Make a property file in your plugin project and filter the value into it. Then when your

RE: maven-archetype-plugin 2.0-alpha-2 failed

2008-03-11 Thread Brian E. Fox
Alpha-2 restored backwards compatibility so we need to see the logs to assist. -Original Message- From: thebugslayer [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 10:49 AM To: Maven Users List Subject: maven-archetype-plugin 2.0-alpha-2 failed Hello, Does anyone know why the

RE: How to create intermediate directories?

2008-03-11 Thread Brian E. Fox
Usually plugins will create the folder when they have something to put there. Why do you want a random empty folder in target? -Original Message- From: David C. Hicks [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 1:20 PM To: users@maven.apache.org Subject: How to create

RE: Maven Install Plugin Overwrites Custom Artifact Names

2008-03-11 Thread Brian E. Fox
Yes, the name format must be known in order for files to be found in the repository. -Original Message- From: David Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 1:44 PM To: Maven Users List Subject: Maven Install Plugin Overwrites Custom Artifact Names Hi Everyone,

RE: How to exclude all test classes from jar?

2008-03-11 Thread Brian E. Fox
/target/test-classes are not included in the jar by default. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Chris Sent: Tuesday, March 11, 2008 3:30 PM To: users@maven.apache.org Subject: How to exclude all test classes from jar? I'd like to exclude all classes in

RE: [ANN] m2eclipse 0.9.0 Released

2008-03-11 Thread Brian E. Fox
Nice! I stumbled on the ability to use external installations, including 2.0.x. This is awesome since 2.1-SNAPSHOT isn't quite ready for primetime. -Original Message- From: Jason van Zyl [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2008 6:16 PM To: Maven Users List Subject: [ANN]

RE: Release process

2008-03-10 Thread Brian E. Fox
What do you mean the release plugin doesn't copy them? The resources are in the war and the war gets deployed. You may also be getting a sources jar and the resources should be in there. Is this what you're missing? -Original Message- From: Luca Tagliani [mailto:[EMAIL PROTECTED] Sent:

RE: Reuse Best Practice

2008-03-10 Thread Brian E. Fox
Using a common parent (grand-parent in this case) of your parents is what you want. If you are trying to share plugin configuration, use pluginManagement to set the config. Then the children can just declare the plugin and they will inherit the config, while the (grand)parent will install because

RE: [POLL] Why are you not able to use the most recent maven release?

2008-03-10 Thread Brian E. Fox
We're currently stuck on 2.0.4 but are starting to plan to upgrade to 2.0.9. 2.1 is not even on the radar yet. Good, be sure to check out your dependencies using the url I previously sent on this thread. 2.0.9 will have some important fixes / enhancements so it should be considered for upgrade.

RE: Reuse Best Practice

2008-03-10 Thread Brian E. Fox
override that in their poms. This should work for me. Thanks. -Paul -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2008 12:11 PM To: Maven Users List Subject: RE: Reuse Best Practice Using a common parent (grand-parent in this case) of your parents

RE: Release process

2008-03-10 Thread Brian E. Fox
of the pom.xml) isn't copied into the war. Brian E Fox wrote: What do you mean the release plugin doesn't copy them? The resources are in the war and the war gets deployed. You may also be getting a sources jar and the resources should be in there. Is this what you're missing? -Original

RE: How can I use snapshot version when deploying application?

2008-03-09 Thread Brian E. Fox
Maven uses the repository based on the version. To use the snapshot repo your version must end in -SNAPSHOT (ie 1.0-SNAPSHOT) -Original Message- From: youhaodeyi [mailto:[EMAIL PROTECTED] Sent: Sunday, March 09, 2008 3:03 AM To: users@maven.apache.org Subject: How can I use snapshot

RE: Re: Downloading Sources

2008-03-08 Thread Brian E. Fox
Actually dependency:sources will do it too. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Jan Torben Heuer Sent: Saturday, March 08, 2008 2:25 PM To: users@maven.apache.org Subject: Re: Downloading Sources Alan Gutierrez wrote: I am able to download sources using

RE: How can I download all the packages from a remote repository?

2008-03-08 Thread Brian E. Fox
download all the packages from a remote repository? Can I write the dependency with wildcard characters? For example, dependency artifactId*/artifactId groupId*/groupId ... /dependency Then I will download all the packages from the repository. Brian E Fox wrote: Get

RE: Maven upgrade breaks testcases

2008-03-07 Thread Brian E. Fox
Check the release notes for 2.0.8, one change to tests was that the classpath now puts test stuff first. -Original Message- From: Arash Bizhan zadeh [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2008 11:25 AM To: Maven Users List Subject: Maven upgrade breaks testcases I upgraded

RE: Archetypes and plugins

2008-03-07 Thread Brian E. Fox
The archetype packaging brings its own lifecycle bindings, but you should be able to bind things normally. If you are trying to do this during create-from-project, it probably isn't possible. -Original Message- From: Ian Godman [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2008

RE: Maven Assembly for MultiModule project

2008-03-07 Thread Brian E. Fox
Check out the free book[1], this can be read in a few hours and should get you up to speed quickly. [1] http://www.sonatype.com/book -Original Message- From: krishnan.1000 [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2008 1:14 PM To: users@maven.apache.org Subject: Re: Maven

RE: Knowing what artifact I need?

2008-03-07 Thread Brian E. Fox
The new M2E plugin demoed [1] a few weeks ago had this built in and was very sweet. They said it would be released soon. [1] http://blogs.sonatype.com/jvanzyl/2008/02/10/120268422.html -Original Message- From: Allen, Daniel [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2008 4:18

[POLL] Why are you not able to use the most recent maven release?

2008-03-07 Thread Brian E. Fox
I get the sense that lots of people are using older versions of Maven due to various regressions. As we get closer to 2.1 alpha, we need to ensure that we identify the regressions across the 2.0 line so that we can make sure they are fixed in 2.1 and so that users can upgrade to a recent 2.0.x

RE: [POLL] Why are you not able to use the most recent maven release?

2008-03-07 Thread Brian E. Fox
release? On Fri, Mar 7, 2008 at 2:44 PM, Brian E. Fox [EMAIL PROTECTED] wrote: If this is the case for you, please reply and state the version you're using and why (preferably referring to a Jira). We will use this information to prioritize issues for 2.0.10 and beyond. Some time after 2.0.5

RE: Knowing what artifact I need?

2008-03-07 Thread Brian E. Fox
The m2e plugin has an index of central that comes with it. It can also access index updates and internal repo indexes via Nexus (proximity replacement) -Original Message- From: Allen, Daniel [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2008 5:31 PM To: Maven Users List Subject: RE:

RE: [POLL] Why are you not able to use the most recent maven release?

2008-03-07 Thread Brian E. Fox
- the problem is getting an entire organization to upgrade. Aside from the, it works better response, typically, there needs to be a financial reason explaining why we are asking everyone to stop what they are doing and upgrade. -Original Message- From: Brian E. Fox [mailto:[EMAIL

RE: [POLL] Why are you not able to use the most recent maven release?

2008-03-07 Thread Brian E. Fox
] Why are you not able to use the most recent maven release? On Fri, Mar 7, 2008 at 6:09 PM, Brian E. Fox [EMAIL PROTECTED] wrote: Wendy: What happens in this case? Does it grab the wrong one or just die? Is there a Jira? Not sure if it's in JIRA, sorry. It does not just pick the wrong one

RE: [POLL] Why are you not able to use the most recent maven release?

2008-03-07 Thread Brian E. Fox
, Wendy Smoak [EMAIL PROTECTED] wrote: On Fri, Mar 7, 2008 at 2:44 PM, Brian E. Fox [EMAIL PROTECTED] wrote: If this is the case for you, please reply and state the version you're using and why (preferably referring to a Jira). We will use this information to prioritize issues for 2.0.10

RE: [POLL] Why are you not able to use the most recent maven release?

2008-03-07 Thread Brian E. Fox
lastUpdated20080114041911/lastUpdated /versioning /metadata //How come mvn 2.08 does'nt see my 1.7 maven-site-plugin and hunts for LATEST RELEASE versions? Thanks M-- - Original Message - From: Brian E. Fox [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent: Friday, March 07, 2008 8:28

RE: How can I download all the packages from a remote repository?

2008-03-07 Thread Brian E. Fox
Get a repository manager (proximity/nexus/archiva/artifactory) to act as a local proxy. Scraping the entire repository is not being a friendly netizen and will probably get your ip blocked. There are much better ways. -Original Message- From: youhaodeyi [mailto:[EMAIL PROTECTED] Sent:

RE: MavenProject.getDependencyArtifacts() returns null

2008-03-06 Thread Brian E. Fox
You need to declare @requiresDependencyResolution scope in your mojo annotation. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2008 7:45 AM To: users@maven.apache.org Subject: MavenProject.getDependencyArtifacts() returns null Hi. When

RE: Try to run install before eclipse:eclipse

2008-03-06 Thread Brian E. Fox
This seems related to MNG-2277, which was fixed in 2.0.8. Are you seeing this on 2.0.8 or earlier? -Original Message- From: Martin Höller [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2008 5:41 AM To: Maven Users List Subject: Re: Try to run install before eclipse:eclipse On

RE: Wessphere plugin

2008-03-06 Thread Brian E. Fox
It's in the mojo sandbox (look for was) -Original Message- From: I am Who i am [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2008 1:58 PM To: Maven Users List Subject: Wessphere plugin Hi All I know some time there was a plugin for Websphere5.1 did exist at maven,

RE: dependency-copy

2008-03-05 Thread Brian E. Fox
This isn't currently possible. I'm adding similar functionality to the common module for another plugin so I should be able to add this to dependency after. Can you file a jira? -Original Message- From: Saxena, Sandeep [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2008 1:16 AM To:

RE: dependency:copy always creates new timestamp

2008-03-05 Thread Brian E. Fox
Currently no. I use the plexus-utils copyFile which copies the stream contents. To copy the file and preserve the timestamp would require some changes. Can you file a jira? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2008 7:00 AM To:

RE: plugin does not exist or no valid version could be found

2008-03-05 Thread Brian E. Fox
Are these codehaus plugins? Someone wiped the metadata during a deploy yesterday. It is being restored. -Original Message- From: Marc Dugger [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2008 10:49 AM To: users@maven.apache.org Subject: plugin does not exist or no valid version

RE: RE: how to dependency:sources if sources at different location

2008-03-05 Thread Brian E. Fox
/ How can I tell Maven to download the sources for spring-core, spring-web, spring-remoting and so on all from the same location (see above). Thanx, Torsten Brian E. Fox [EMAIL PROTECTED] 04.03.2008 18:03 Bitte antworten an Maven Users List users@maven.apache.org An Maven Users List

RE: paging Japanese readers for a patch review....

2008-03-05 Thread Brian E. Fox
on jira (MNG-428) ? Thanks, Yamamoto On 2/29/08, Brian E. Fox [EMAIL PROTECTED] wrote: Anyone able to verify this patch that can read Japanese? http://jira.codehaus.org/browse/MNG-428 - To unsubscribe, e-mail: [EMAIL

Looking for regressions from 2.0.7 to 2.0.8

2008-03-04 Thread Brian E. Fox
We are getting ready to close out the 2.0.9 release. Are there any regressions in 2.0.8 in Jira not already scheduled for 2.0.9[1]? Now is also the time to make your pleas for other critical issues that must get into 2.0.9. We're available in irc.codehaus.org #maven if you want to raise

RE: how to dependency:sources if sources at different location

2008-03-04 Thread Brian E. Fox
The sources goal tries to find sources for all your dependencies. What else is it you want to do? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2008 11:35 AM To: users@maven.apache.org Subject: how to dependency:sources if sources at

RE: Re: ftp://ibiblio.org/pub/packages/maven2 wiped out?

2008-03-03 Thread Brian E. Fox
We don't control ibiblio, but it is only a mirror. The real location is here: http://maven.apache.org/download.html -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Jan Torben Heuer Sent: Monday, March 03, 2008 5:01 AM To: users@maven.apache.org Subject: Re:

RE: when will maven 2.0.9 be officially released?

2008-03-03 Thread Brian E. Fox
Hi Raphael, that was something I put together back in July before the archetypeNG was done. Can you update the wiki with the correct info? -Original Message- From: Raphaël Piéroni [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 6:43 AM To: Maven Users List Subject: Re: when will

RE: maven-dependency-plugin not unpacking properly

2008-03-03 Thread Brian E. Fox
The plexus archiver component code works like this: return isIncluded( name ) !isExcluded( name ); So basically the excludes **/* is overriding the includes. Most likely you only want includes**/common.properties/includes --Brian -Original Message- From: EJ Ciramella [mailto:[EMAIL

RE: maven-dependency-plugin not unpacking properly

2008-03-03 Thread Brian E. Fox
the includes, but I'm getting everything out of the artifact. Any other suggestions? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 1:14 PM To: Maven Users List Subject: RE: maven-dependency-plugin not unpacking properly The plexus archiver component

RE: maven-dependency-plugin not unpacking properly

2008-03-03 Thread Brian E. Fox
the alpha part now? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 2:23 PM To: Maven Users List Subject: RE: maven-dependency-plugin not unpacking properly What version of the plugin are you using? This is only available in 2.0. -Original

RE: maven-dependency-plugin not unpacking properly

2008-03-03 Thread Brian E. Fox
. But at the entry point for the dependency docs, it specifies 2.0-alpha-4. Please fix. -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2008 2:55 PM To: Maven Users List Subject: RE: maven-dependency-plugin not unpacking properly The version specific

RE: maven-dependency-plugin not unpacking properly

2008-03-03 Thread Brian E. Fox
I added an IT for this, it's working ok: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin /src/it/filterunpack/?pathrev=633266 Look at the pom to see how to use it. (should be the same for unpack goal too) -Original Message- From: Brian E. Fox [mailto:[EMAIL

Open call for Papers - ApacheCon US 2008

2008-03-02 Thread Brian E. Fox
Open Call for Papers for ApacheCon US 2008 !REMINDER: this will be a short CFP, ending on 3 April, so please be sure to get your CFP submissions in soon! The Apache Software Foundation (ASF) invites submissions to its official users' conference, ApacheCon US 2008, held 3 November through

RE: when will maven 2.0.9 be officially released?

2008-03-02 Thread Brian E. Fox
End of next week is pretty much a certaint no. My personal goal is to have the vote out by the end of the week though. We like to let the Maven core release candidates be available for ~ a week before we shove it out. -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent:

RE: Bug with maven-dependency-plugin?

2008-03-02 Thread Brian E. Fox
Huh? The flex2 plugin depends on the dependency plugin? That's not right...plugins shouldn't be used as dependencies of other plugins and now you can see why. You might wanna ping the flex2 author and have him/her fix that. -Original Message- From: Sebastien ARBOGAST [mailto:[EMAIL

RE: when will maven 2.0.9 be officially released?

2008-03-02 Thread Brian E. Fox
As mentioned, please include an IT with those instructions. If you get us this by midweek, then we will definitely try to include it. At this point, issues not scheduled for 2.0.9 without an IT test attached have almost no chance of making it in. -Original Message- From: Andrew Robinson

RE: SNAPSHOT checking plugin?

2008-03-01 Thread Brian E. Fox
for the enforcer so that it only gets run when a special release profile is activated? Ken On 2/29/08, Brian E. Fox [EMAIL PROTECTED] wrote: This is the only way to do it. You should have a common pom that all your stuff shares and you would just put the config in that one place. -Original Message

RE: SNAPSHOT checking plugin?

2008-02-29 Thread Brian E. Fox
This is the only way to do it. You should have a common pom that all your stuff shares and you would just put the config in that one place. -Original Message- From: Ken Liu [mailto:[EMAIL PROTECTED] Sent: Friday, February 29, 2008 11:19 AM To: Maven Users List Subject: Re: SNAPSHOT

paging Japanese readers for a patch review....

2008-02-28 Thread Brian E. Fox
Anyone able to verify this patch that can read Japanese? http://jira.codehaus.org/browse/MNG-428

RE: Problem with maven-dependency-plugin: copy-dependencies

2008-02-25 Thread Brian E. Fox
] wrote: The attachments are there. My first posting did indeed not include the attachements, I edited the posting and now the file (pp.zip) is there. Brian E Fox wrote: The attachments didn't come through. Try writing a jira at http://jira.codehaus.org/browse/MDEP and attach the files

RE: Compile issues after upgrading from Maven 2.0.6

2008-02-25 Thread Brian E. Fox
Sounds like the depMgt issue to me... -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Friday, February 22, 2008 4:43 PM To: Maven Users List Subject: RE: Compile issues after upgrading from Maven 2.0.6 I think there's a 2.0.5 to 2.0.6 upgrade guide:

RE: JNI, freehep-nar-plugin and assembly plugin question

2008-02-25 Thread Brian E. Fox
on where to obtain maven-assembly-plugin? I did'nt see any information in maven distro on NAR...could you provide any relevant information on use and configuration? Thanks Martin-- - Original Message - From: Brian E. Fox [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent

RE: assembly plugin and project inheritance

2008-02-25 Thread Brian E. Fox
Stephen is correct. The other subtle difference is that using the xxx-dependencies forces you to declare a dependency and then maven can reorder reactor builds appropriately. There is currently no way for the dependency plugin to interact with the reactor order in 2.0. -Original

RE: Pre-build own maven plugin

2008-02-25 Thread Brian E. Fox
This is not really possible. What I did in the past to work around this should hopefully work for you: Create a plugin that is a shell around an interface. Then create an impl of this interface and build that in your multimodule build (because it presumably has code specific to the current

RE: JNI, freehep-nar-plugin and assembly plugin question

2008-02-24 Thread Brian E. Fox
You can use the dependency plugin to unpack your zip. It's not clear though if you are trying to include the .so's into the NAR or something else. If it's something else, you can use the assembly plugin to pick up what you need. If it's the nar, then you'll have to experiment with where to unpack

RE: dependencyManagement and conflicts

2008-02-21 Thread Brian E. Fox
, as you said to set the preferred version. What the correct way to do it ? The second question is on the use of the dependency:analyze-dep-mgt. Can I use it to detect a conflict ? How can I use the failBuild option ? Benoit Brian E. Fox wrote: DependencyManagment is only used for direct

RE: dependencyManagement and conflicts

2008-02-20 Thread Brian E. Fox
] [INFO] BUILD SUCCESSFUL Why doesn't it fail ? What is the correct way to use this plugin ? I want to include this check to the release:prepare configuration. Benoit Brian E. Fox wrote: Yes. I think it was mng-1577 that made this intentional change

RE: Maven ignores my archetype selection

2008-02-16 Thread Brian E. Fox
in my post was taken. So, given that I don't need old-style commands, what do new-style commands look like? Where can I find documentation on them? Regards, Tom On Sat, Feb 16, 2008 at 6:03 PM, Brian E. Fox [EMAIL PROTECTED] wrote: Use org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7

RE: Maven ignores my archetype selection

2008-02-16 Thread Brian E. Fox
, 2008 1:35 AM, Brian E. Fox [EMAIL PROTECTED] wrote: The new ones prompt you from the command line. Just pick the one you need from the prompts. -Original Message- From: Tom Cook [mailto:[EMAIL PROTECTED] Sent: Saturday, February 16, 2008 4:07 AM To: Maven Users List Subject: Re

RE: Maven ignores my archetype selection

2008-02-15 Thread Brian E. Fox
Use org.apache.maven.plugins:maven-archetype-plugin:1.0-alpha-7:create if you need the old style commands. The new version 2.0 has an issue with backwards compat and should be fixed shortly. -Original Message- From: Tom Cook [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008

RE: dependency:unpack vs. eclipse:eclipse

2008-02-14 Thread Brian E. Fox
taken care of filing a bug? If not, I would take care of this. The bug is in the dependency-plugin, right? bye, Michael Brian E. Fox schrieb: I am able to reproduce this and it's an unfortunate bug in 2.0.x. The only workaround I can suggest is to change the dependency plugin binding to a later

RE: The list of maven plug-ins that are used by maven during the build

2008-02-14 Thread Brian E. Fox
I'm planning to move code from the enforcer to help to do this, but alas it also doesn't help you now. -Original Message- From: John Casey [mailto:[EMAIL PROTECTED] Sent: Thursday, February 14, 2008 12:09 PM To: Maven Users List Subject: Re: The list of maven plug-ins that are used by

RE: not able to deploy using webdav

2008-02-13 Thread Brian E. Fox
I haven't had much luck with the build in maven support, but you can set it up very easily as a freestyle project. Hudson is rock solid and the only thing I use. -Original Message- From: Savita_p_m [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 13, 2008 12:22 PM To:

RE: dependency:unpack vs. eclipse:eclipse

2008-02-13 Thread Brian E. Fox
/executions /plugin /plugins /build /project Brian E. Fox schrieb: The faq entry about the executions/non executions would only apply when running dependency:unpack directly...it shouldn't have any issues with eclipse:eclipse. (although I

RE: dependency:unpack vs. eclipse:eclipse

2008-02-12 Thread Brian E. Fox
The faq entry about the executions/non executions would only apply when running dependency:unpack directly...it shouldn't have any issues with eclipse:eclipse. (although I haven't tested it recently). Can you paste your pom so I can look at it? -Original Message- From: Michael Heß

RE: dependencyManagement and conflicts

2008-02-12 Thread Brian E. Fox
Yes. I think it was mng-1577 that made this intentional change. The dependencyManagement overrides the transitive versions. Dependency:analyze-dep-mgt can help you detect these conflicts later. -Original Message- From: Benoit Decherf [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 12,

RE: Enforcer Plugin 1.0 release and requirePluginVersions rule

2008-02-12 Thread Brian E. Fox
The whole site and code has been refactored since the 1.0-alpha-3 release. The code used to be separate modules, but now it's all a subtree. This included the sites and everything, so technically the current site didn't exist in 1.0-alpha-3. --Brian -Original Message- From: Wendy Smoak

RE: Maven Resources Plugin Windows path \\ parsing problem

2008-02-12 Thread Brian E. Fox
This is standard java processing that is happening. \ is an escape char, so to get \ you need \\. If you want \\ then you need . -Original Message- From: nodje [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 12, 2008 9:16 PM To: users@maven.apache.org Subject: Maven Resources

RE: not able to deploy using webdav

2008-02-12 Thread Brian E. Fox
Add the wagon to your pom inside the extensions tag. -Original Message- From: Savita_p_m [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 12, 2008 10:54 PM To: users@maven.apache.org Subject: not able to deploy using webdav Hi, I am getting following error while trying for

RE: Weird behaviour with dependency range

2008-02-11 Thread Brian E. Fox
Looks like the same npe as MNG-3372 and MNG-3351 -Original Message- From: Simon Kitching [mailto:[EMAIL PROTECTED] Sent: Monday, February 11, 2008 7:51 AM To: users@maven.apache.org Subject: Weird behaviour with dependency range Hi, I've run across something very odd with dependency

RE: [ANN] Maven Archetype Plugin 2.0-alpha-1 for Maven 2 Released

2008-02-08 Thread Brian E. Fox
Yes it is. -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Friday, February 08, 2008 8:37 PM To: users@maven.apache.org Subject: Re: [ANN] Maven Archetype Plugin 2.0-alpha-1 for Maven 2 Released Is this the new Archetype NG Plugin that allows creating archetypes

RE: Dependency:build-classpath

2008-02-01 Thread Brian E. Fox
Is it just printing the classpath instead, or is it not doing anything? -Original Message- From: John Coleman [mailto:[EMAIL PROTECTED] Sent: Friday, February 01, 2008 7:09 AM To: Maven Users List Subject: Dependency:build-classpath I'm trying to use the dependency plugin to record

RE: Deploying Plugin to Other sites

2008-02-01 Thread Brian E. Fox
Change the distributionManagment urls and redeploy -Original Message- From: nadias [mailto:[EMAIL PROTECTED] Sent: Friday, February 01, 2008 7:21 PM To: users@maven.apache.org Subject: Deploying Plugin to Other sites Hello, How can a plugin that was compiled and built at one site be

RE: Deploying Plugin to Other sites

2008-02-01 Thread Brian E. Fox
deploying to a central repository instead of having to recompile from source from a remote site? Brian E Fox wrote: Change the distributionManagment urls and redeploy -Original Message- From: nadias [mailto:[EMAIL PROTECTED] Sent: Friday, February 01, 2008 7:21 PM To: users

<    1   2   3   4   5   6   7   8   9   10   >