RE: Memory issues in 2.0.9

2008-05-16 Thread Brian E. Fox
Subject: Re: Memory issues in 2.0.9 Ah ok. So by using 2.0.9 I will have different versions of plugins downloaded into my plugins directory, but with 2.0.8 it will use a different set? I figured the behavior of which ones they use would be the same. On Thu, May 15, 2008 at 11:21 AM, Brian E. Fox

RE: Bug in maven 2 -

2008-05-15 Thread Brian E. Fox
Is some_property the same as some.property below? (ie are you redefining it?) How are you using the property that isn't being set? -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 14, 2008 4:28 PM To: Maven Users List Subject: RE: Bug in maven 2 - I

RE: Memory issues in 2.0.9

2008-05-15 Thread Brian E. Fox
Same thought here, it's more likely that plugins changed. If you go back to 2.0.8 and run with -U, then you should get the same plugins as 2.0.9 -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Thursday, May 15, 2008 11:08 AM To: Maven Users List Subject: Re: Memory

RE: Bug in maven 2 -

2008-05-15 Thread Brian E. Fox
/resources /build properties some.property${other.value}/some.property /properties /profile -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Thursday, May 15, 2008 9:04 AM To: Maven Users List Subject: RE: Bug in maven 2 - Is some_property the same

RE: Memory issues in 2.0.9

2008-05-15 Thread Brian E. Fox
, May 15, 2008 at 11:21 AM, Brian E. Fox [EMAIL PROTECTED] wrote: Same thought here, it's more likely that plugins changed. If you go back to 2.0.8 and run with -U, then you should get the same plugins as 2.0.9 -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: cant build the next version until dependency built in a multi-module project

2008-05-14 Thread Brian E. Fox
artefacts that are going to be built? Or is it not that simple? -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: 13 May 2008 15:28 To: Maven Users List Subject: RE: cant build the next version until dependency built in a multi-module project One of the plugins in your build

RE: Bug in m2eclipse 0.9.3?

2008-05-13 Thread Brian E. Fox
This is a bug in the Maven 2.1 embedder, which is used by M2e. Jason is working on finishing the new artifact code that should resolve this. -Original Message- From: Sench [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 6:55 AM To: users@maven.apache.org Subject: Bug in m2eclipse

RE: cant build the next version until dependency built in a multi-module project

2008-05-13 Thread Brian E. Fox
One of the plugins in your build is asking Maven to resolve ALL project and ALL dependencies and thus it's a catch-22. -Original Message- From: Richard Chamberlain [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 9:17 AM To: Maven Users List Subject: RE: cant build the next version

RE: Modify Classpath

2008-05-13 Thread Brian E. Fox
If you have classes that you need outside a war, the correct way is to make this into a jar that is used externally and also packaged inside your war. -Original Message- From: vicki [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 6:49 PM To: users@maven.apache.org Subject: Re:

RE: Re: which repository contains the 2 artifacts?

2008-05-10 Thread Brian E. Fox
Oliver, take a look here: http://www.sonatype.com/book/reference/repository-manager.html# -Original Message- From: oliver.maven [mailto:[EMAIL PROTECTED] Sent: Saturday, May 10, 2008 2:13 AM To: Maven Users List Subject: Re: Re: which repository contains the 2 artifacts? hi Brian Fox

RE: Maven 2.0.7 and relativePath/

2008-05-09 Thread Brian E. Fox
and relativePath/ Hi, I think in this case it is possible to solve this if we use SNAPSHOT as a version. Regards, Dobri On Fri, May 9, 2008 at 4:38 AM, Brian E. Fox [EMAIL PROTECTED] wrote: The parents must be found before the property interpolation can occur and you essentially have a chicken or egg

RE: Dependency scope - provided or optional.. ?

2008-05-09 Thread Brian E. Fox
Optional is meant if you have several dependencies that you need to compile, but that a user of your jar might only need one of (think oracle vs mssql bindings). -Original Message- From: Paul Smith [mailto:[EMAIL PROTECTED] Sent: Friday, May 09, 2008 4:42 PM To: Maven Users List Subject:

RE: Is it possible to automatically append -DperformRelease=true to mvn deploy

2008-05-09 Thread Brian E. Fox
Just add the property to your settings file in a profile you always have activated with activeProfiles. -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Friday, May 09, 2008 10:32 AM To: Maven Users List Subject: Re: Is it possible to automatically append

RE: Can't run ant task in maven 2.0.9

2008-05-08 Thread Brian E. Fox
in maven 2.0.9 I've found if I upgrade the antrun plugin to 1.2-SNAPSHOT the problem is fixed. Should I still log a Jira? Brian E. Fox wrote: Since this is a regression, we will fix it for 2.0.10, can you write a jira and attach a sample project? -Original Message- From: Matt Milliss

RE: site is very confusing for beginners - how to get list of archetypes - link on faq is broken

2008-05-08 Thread Brian E. Fox
The easiest way to see the archetypes is to run mvn archetype:generate and it will give you a list and walk you through all the options. -Original Message- From: Doron Solomon [mailto:[EMAIL PROTECTED] Sent: Thursday, May 08, 2008 8:35 AM To: Maven Users List Subject: RE: site is very

RE: Deploying only some modules

2008-05-08 Thread Brian E. Fox
The other thing you can do is override the distributionManagement section of the module B so that deploy just puts it somewhere local like file://${basedir}/target instead of the remote repo -Original Message- From: Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, May 08, 2008 10:38 AM

RE: dependency:copy-dependencies and parent projects

2008-05-08 Thread Brian E. Fox
Currently, no. Adding the parents as dependencies though is a little scary because it could cause some recursion in transitive dep resolution. You can however use dependency:copy or unpack and list them in the artifactItems list to do what you want. -Original Message- From: [EMAIL

RE: Maven 2.0.7 and relativePath/

2008-05-08 Thread Brian E. Fox
7, 2008 at 7:59 PM, Brian E. Fox [EMAIL PROTECTED] wrote: The relative path is used when building a child module to find the parent. By default it looks in ../pom.xml but you can change this. If the matching parent is not found on disk, it will be retrieved from the repository. You should

RE: Maven 2.0.7 and relativePath/

2008-05-08 Thread Brian E. Fox
, Brian E. Fox [EMAIL PROTECTED] wrote: The relative path is used when building a child module to find the parent. By default it looks in ../pom.xml but you can change this. If the matching parent is not found on disk, it will be retrieved from the repository. You should not have properties

RE: maven does not run code specified in the post-site phase?

2008-05-08 Thread Brian E. Fox
Or bind your goal to site since bound plugins always run after the default bound plugins on the same phase. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, May 08, 2008 6:53 PM To: Maven Users List Subject: Re: maven does not run code specified in the

RE: Can't run ant task in maven 2.0.9

2008-05-07 Thread Brian E. Fox
on 1.6.5 and this didn't fix the problem either. Regards Matt Hervé BOUTEMY wrote: and give the exact version of the maven-antrun-plugin used Le dimanche 04 mai 2008, Brian E. Fox a écrit : Can you try to isolate this to the Ant task or Maven update? Ie don't update them both at the same time

RE: Maven 2.0.7 and relativePath/

2008-05-07 Thread Brian E. Fox
The relative path is used when building a child module to find the parent. By default it looks in ../pom.xml but you can change this. If the matching parent is not found on disk, it will be retrieved from the repository. You should not have properties in the g/a/v of either the parent section or

RE: maven-default-skin artifact is failing our builds

2008-05-07 Thread Brian E. Fox
The checksum is a hint...perhaps there is garbage in Artifactory from a network glitch? Try clearing it and your local to see. -Original Message- From: Brewster, Richard [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 07, 2008 9:50 AM To: Maven Users List Subject: maven-default-skin

RE: Forcing the execution of a phase before a goal

2008-05-06 Thread Brian E. Fox
Adding @aggregator to you mojo annotations should do what you want. -Original Message- From: carioca [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 9:49 AM To: users@maven.apache.org Subject: RE: Forcing the execution of a phase before a goal Hi Brian, Thank you for the help.

RE: Checkstyle configLocation error

2008-05-06 Thread Brian E. Fox
You can see a way to bundle and share the config here: http://blogs.sonatype.com/brian/2008/04/17/120848550.html (at the end, I specifically talk about the checkstyle use) -Original Message- From: jactor [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 8:00 AM To:

RE: maven.repo.local, again

2008-05-06 Thread Brian E. Fox
${settings.localRepository} should work IIRC. -Original Message- From: Brewster, Richard [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 9:57 AM To: Maven Users List Subject: RE: maven.repo.local, again Does Maven provide a property with the path to the local repo? I think the

RE: Maven stalls while scanning for projects

2008-05-06 Thread Brian E. Fox
Try running with -X to see if it's spinning in a loop somewhere. -Original Message- From: Michael Delaney [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 8:07 AM To: users@maven.apache.org Subject: Maven stalls while scanning for projects All, While trying to execute a maven

RE: [groovy-user] GMaven 1.0-rc-1 released

2008-05-05 Thread Brian E. Fox
Its dependencyManagmentdependenciesdependency -Original Message- From: Russel Winder [mailto:[EMAIL PROTECTED] Sent: Sunday, May 04, 2008 4:43 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; users@maven.apache.org Subject: Re: [groovy-user] GMaven 1.0-rc-1 released On Sun,

RE: Can't run ant task in maven 2.0.9

2008-05-04 Thread Brian E. Fox
Can you try to isolate this to the Ant task or Maven update? Ie don't update them both at the same time and see which one actually causes the breakage. -Original Message- From: Matthew Milliss [mailto:[EMAIL PROTECTED] Sent: Sunday, May 04, 2008 5:14 AM To: users@maven.apache.org

RE: Forcing the execution of a phase before a goal

2008-05-04 Thread Brian E. Fox
Can you include your poms to take a look at? I went back to see your original message and it looks like you're on the right track, but without seeing the whole picture it's hard to say why it's not working. -Original Message- From: carioca [mailto:[EMAIL PROTECTED] Sent: Sunday, May 04,

RE: How to get around maven causing CI to fail

2008-05-02 Thread Brian E. Fox
: RE: How to get around maven causing CI to fail Yes, that is exactly what I am referring to. Any way we can change this or provide an override ability? Brian E Fox wrote: Clean forks and executes so it can find additional output folders or something (which I find annoying most of the time

RE: How to get around maven causing CI to fail

2008-05-01 Thread Brian E. Fox
Clean forks and executes so it can find additional output folders or something (which I find annoying most of the time)... therefore it is also going to try and download some dependencies that may not be in the repo (particularly after a version change) -Original Message- From: Brett

RE: Problem with SNAPSHOT

2008-04-30 Thread Brian E. Fox
Try clean? -Original Message- From: Stanley Lee [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 30, 2008 3:30 PM To: Maven Users List Subject: Problem with SNAPSHOT Hi, I define a MyApp.war which depends on MyApp.jar. Like dependency groupIdcom.mine/groupId

RE: default checksumPolicy is warn. Can we switch to fail ?

2008-04-30 Thread Brian E. Fox
There's an open issue for this, that maven should try to care about the content of at least the metadata and not just take garbage. It frequently happens to travelers when they hit a login page to a public wifi. -Original Message- From: chago [mailto:[EMAIL PROTECTED] Sent: Wednesday,

RE: QuickStart example just doesn't work

2008-04-30 Thread Brian E. Fox
Looks like you missed this section: Build the Project mvn package The command line will print out various actions, and end with the following: ... [INFO] [INFO] BUILD SUCCESSFUL [INFO]

RE: zip dependency

2008-04-29 Thread Brian E. Fox
Zips are not placed on the classpath. You could use the dependency plugin to unpack the contents to a known location and use that to load the file. -Original Message- From: knf [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 29, 2008 6:02 AM To: users@maven.apache.org Subject: zip

RE: [POLL] Default Value for File Encoding

2008-04-29 Thread Brian E. Fox
Benjamin, Can you outline in what cases and in what ways this change could break existing builds, and what it would take for the user to fix? Could a tool be created to correct it automatically? --Brian -Original Message- From: Benjamin Bentmann [mailto:[EMAIL PROTECTED] Sent: Tuesday,

RE: gwt-dev-1.4.62-windows.jar seems unreachable

2008-04-29 Thread Brian E. Fox
Use the windows classifier along with com.google.gwt:gwt-dev:1.4.62 -Original Message- From: Dzmitry Lazerka [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 29, 2008 5:32 PM To: users@maven.apache.org Subject: gwt-dev-1.4.62-windows.jar seems unreachable Hello, I have found next

RE: issue with snapshot getting old jar..

2008-04-29 Thread Brian E. Fox
-SNAPSHOT is a required part of the name for it to work. -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 29, 2008 8:15 PM To: Maven Users List Subject: Re: issue with snapshot getting old jar.. I believe the file must be named #.#.#-SNAPSHOT.jar for it

RE: Execute plugin for certain profile

2008-04-28 Thread Brian E. Fox
Move the plugin declarations to the appropriate profile. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 28, 2008 8:54 AM To: users@maven.apache.org Subject: Execute plugin for certain profile In our project, we've created a webapp which we

RE: Compiled dependencies are different when using different java versions

2008-04-28 Thread Brian E. Fox
You need to use 2.0.9 and then the order will be consistent. In the past we didn't use linked collections so it was subject to the natural ordering, which changed between 1.5 and 1.6. In 2.0.9, the order as defined in the pom is preserved so you can reorder if you want to tweak the resolution. All

RE: Maven BuildFailureException:Compilation Failure in DefaultLifecycleExecutor.java:560

2008-04-28 Thread Brian E. Fox
Have you declared a dependency on commons-logging in your pom? -Original Message- From: SKrepkovich [mailto:[EMAIL PROTECTED] Sent: Monday, April 28, 2008 9:55 AM To: users@maven.apache.org Subject: Maven BuildFailureException:Compilation Failure in DefaultLifecycleExecutor.java:560 Hi

RE: Maven BuildFailureException:Compilation Failure in DefaultLifecycleExecutor.java:560

2008-04-28 Thread Brian E. Fox
Well...then it seems like that plugin isn't including it correctly in the pom. I don't know why you would get a compile error otherwise. -Original Message- From: SKrepkovich [mailto:[EMAIL PROTECTED] Sent: Monday, April 28, 2008 10:27 AM To: users@maven.apache.org Subject: RE: Maven

RE: defining the meta-version

2008-04-28 Thread Brian E. Fox
You mean the version you're build is using? See here: http://blogs.sonatype.com/brian/2008/04/10/1207873624557.html -Original Message- From: Lustig, Marc (Allianz Deutschland AG) [mailto:[EMAIL PROTECTED] Sent: Monday, April 28, 2008 10:25 AM To: users@maven.apache.org Subject: defining

RE: [m2] can't get hibernate plugin to work with hsql

2008-04-27 Thread Brian E. Fox
Chapter 7 of Maven: The Definitive Guide shows a multimodule example that happens to use Hibernate: http://www.sonatype.com/book -Original Message- From: Mick Knutson [mailto:[EMAIL PROTECTED] Sent: Saturday, April 26, 2008 10:11 AM To: maven Subject: [m2] can't get hibernate plugin to

RE: Clover 2 plug-in on Maven 2.0.9

2008-04-27 Thread Brian E. Fox
anymore under Maven 2.0.9. To me, it sounds like a bug in 2.0.9. Otherwise, we would've examined all of existing plug-ins whenever there is new Maven release. On Sat, Apr 26, 2008 at 6:21 AM, Brian E. Fox [EMAIL PROTECTED] wrote: Someone else reported issues with that property in 2.0.9 so it could

RE: Controlling the usage of plugin versions

2008-04-27 Thread Brian E. Fox
See my explanation here: http://blogs.sonatype.com/brian/2008/04/10/1207873624557.html -Original Message- From: carioca [mailto:[EMAIL PROTECTED] Sent: Sunday, April 27, 2008 11:34 AM To: users@maven.apache.org Subject: Controlling the usage of plugin versions Hi, I am developing a

RE: [m2] Exception in Javadoc plugin (v2.4)

2008-04-27 Thread Brian E. Fox
Try using javadoc 2.4...the logs show you're using 2.3: Caused by: org.apache.maven.plugin.PluginManagerException: Unable to find the mojo 'org.apache.maven.plugins:maven-javadoc-plugin:2.3:javadoc' in the plugin 'org.apache.maven.plugins:maven-javadoc-plugin' -Original Message- From:

RE: Clover 2 plug-in on Maven 2.0.9

2008-04-26 Thread Brian E. Fox
Someone else reported issues with that property in 2.0.9 so it could be maven. ${project.buid.directory} should be c:\mytest\myproject\target but maybe the problem is with clover trying to change it? -Original Message- From: Ryan H. [mailto:[EMAIL PROTECTED] Sent: Friday, April 25, 2008

RE: Hook ivy repository to Maven

2008-04-26 Thread Brian E. Fox
I think we've answered it a few times, but here it is in one place: Yes, it seems you can access Maven repos from Ivy. I've never used it personally, but they recently made a bunch of announcements regarding metadata support. No, you can't access an IVY repo from Maven. I guess that means people

RE: API to figure out the exact URL of a deployed artifact?

2008-04-25 Thread Brian E. Fox
as properties? any how let me try this method first. Thanks -D On Thu, Apr 24, 2008 at 8:29 PM, Brian E. Fox [EMAIL PROTECTED] wrote: How is that different than the dependency:copy where it takes all those things? -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: API to figure out the exact URL of a deployed artifact?

2008-04-25 Thread Brian E. Fox
-D On Thu, Apr 24, 2008 at 8:29 PM, Brian E. Fox [EMAIL PROTECTED] wrote: How is that different than the dependency:copy where it takes all those things? -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 11:20 PM

RE: profile legacy problem

2008-04-25 Thread Brian E. Fox
ment mvn help:effective-pom -PmyProfile ? LieGrü, strub --- Martin Höller [EMAIL PROTECTED] schrieb: On Friday 25 April 2008 Brian E. Fox wrote: A few tips. Try mvn help:effective-profiles -PmyProfile According to my knowledge and the documentation [1] it's help:active-profiles

RE: jars appear timestamped in wars and zips since 2.0.9

2008-04-25 Thread Brian E. Fox
Are you saying the artifacts are _wrong_ or you just don't like the timestamp'd file name? Usually the timestamp'd name indicates the file came from a remote repo, which could happen depending on various settings and if it's newer on the remote. -Original Message- From: Markku Saarela

RE: Hook ivy repository to Maven

2008-04-25 Thread Brian E. Fox
Sounds like everything you have is in a maven repository. I haven't heard of anyone connecting Maven to an Ivy repository...and I honestly have no idea what that layout might look like. -Original Message- From: Scott Ryan [mailto:[EMAIL PROTECTED] On Behalf Of Scott Ryan Sent: Friday,

RE: Cannot analyze dependencies - invalid entry size (expected 6511 but got 6544 bytes)

2008-04-25 Thread Brian E. Fox
Never seen this one before, but it seems to indicate that the jar is corrupt. Unfortunately not which one. Try using dependency:copy-dependencies and then see if you can unzip all the jars in the target/dependency folder. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: API to figure out the exact URL of a deployed artifact?

2008-04-25 Thread Brian E. Fox
a large replication of maven resolver source, it is now make sense to fall back to using maven-dependency-plugin to do the work. does it make sense to add a dependency:remove mojo to the maven-dependency-mojo? -D On Fri, Apr 25, 2008 at 6:34 AM, Brian E. Fox [EMAIL PROTECTED] wrote: I see, you

RE: Antwort: Cannot analyze dependencies - invalid entry size (expected 6511 but got 6544 bytes)

2008-04-25 Thread Brian E. Fox
No, the analyzer isn't concerned at that point with the optional or not...it's (actually ASM) trying to open the zip and analyze the classes. Can you unzip that jar? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, April 25, 2008 9:57 AM To:

RE: Nexus Bug?

2008-04-25 Thread Brian E. Fox
Hi Peter, we have a nexus-users list that you might be interested in. Where? http://nexus.sonatype.org/mailing-lists.html a) How can I deploy a third party artifact using the web interface? This is coming, but not in yet. When? Originally beta-4, but we pulled it up to beta-3 Security on

RE: API to figure out the exact URL of a deployed artifact?

2008-04-25 Thread Brian E. Fox
If you wanted to create a new repository layout implementation, you could probably create a new ArtifactRepository instance with this layout and hand it to the resolver. -Original Message- From: Mark Struberg [mailto:[EMAIL PROTECTED] Sent: Friday, April 25, 2008 1:53 PM To: Maven

RE: Hook ivy repository to Maven

2008-04-25 Thread Brian E. Fox
it more clear, I only have Maven but I want to access and fetch the jars in a remote ivy repository. Can I make it? Thanks. On 4/25/08, Brian E. Fox [EMAIL PROTECTED] wrote: Sounds like everything you have is in a maven repository. I haven't heard of anyone connecting Maven to an Ivy

RE: dependencyManagement help

2008-04-24 Thread Brian E. Fox
Then I'm not seeing what purpose the dependencyManagement section serves if I've still gotta declare pretty much everything apart from 'version' in other dependency declarations? The group/artifact/classifier/type are part of the identifier and those must match. The scope and version can be

RE: Adding maven-compiler-plugin to super POM

2008-04-24 Thread Brian E. Fox
You need to specify this pom as a parent element in your child pom...simply adding it in the parent directory doesn't magically do it for you ;-) Also, super-pom is normally reserved to mean the pom included in the maven core...the true super pom. A more appropriate term is a corporate pom for a

RE: maven-checkstyle-plugin basedir

2008-04-24 Thread Brian E. Fox
That is a weird one, but try changing your configLocation to : configLocation${basedir}/config/CheckStyle Rules.xml/configLocation This will give an absolute path to checkstyle. You also might want to get rid of the space in the file name. -Original Message- From: Hart, Leo

RE: profile legacy problem

2008-04-24 Thread Brian E. Fox
I have a problem with legacy in maven 2, i've configured a profile called myProfilein my POM parent and i have my project pom which inherits this pom parent, but when i execute mvn -PmyProfile myProject the profile is not activated, can you see the problem Yes it's right over oh you

RE: Using a distribution built by the assembly plugin as a dependency...

2008-04-24 Thread Brian E. Fox
Actually yes: http://blogs.sonatype.com/brian/2008/04/17/120848550.html -Original Message- From: Michael Ransley [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 7:21 PM To: users@maven.apache.org Subject: Using a distribution built by the assembly plugin as a dependency...

RE: ant ftp from mave plugin works on one project but not another

2008-04-24 Thread Brian E. Fox
I have an idea: maven uses the first plugin config it sees, so if that other project is using ant anywhere else, and it runs first, the dependency won't actually be used. -Original Message- From: bheath [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 7:58 PM To:

RE: API to figure out the exact URL of a deployed artifact?

2008-04-24 Thread Brian E. Fox
How is that different than the dependency:copy where it takes all those things? -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 11:20 PM To: Maven Users List Subject: API to figure out the exact URL of a deployed artifact? Hello, I would like

RE: M2Eclipse -workspace resolution

2008-04-23 Thread Brian E. Fox
I think you need to be more explicit about your problems. You can also disable workspace resolution per project in the Maven properties. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 22, 2008 2:54 AM To: users@maven.apache.org Subject:

RE: Nexus Bug?

2008-04-23 Thread Brian E. Fox
Hi Peter, we have a nexus-users list that you might be interested in. a) How can I deploy a third party artifact using the web interface? This is coming, but not in yet. b) how can I tell maven when to use the Nexus Third Party Repo, when to use the Nexus Release Repo and when to use the Nexus

RE: M2Eclipse -workspace resolution

2008-04-23 Thread Brian E. Fox
Dvorjancansky, Dr. Peter Körner, Günther Ottendorfer, Dr. Raphael Kübler, Dr. Steffen Roehn Handelsregister: Amtsgericht Bonn, HRB 59 19 Sitz der Gesellschaft: Bonn WEEE-Reg.-Nr.: DE60800328 -Ursprüngliche Nachricht- Von: Brian E. Fox [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 23. April 2008 14

RE: Explicitly deactivated profiles activated by default - bug ?

2008-04-23 Thread Brian E. Fox
There is a bug added recently that implies that the cli deactivation code isn't working at all. -Original Message- From: Bernhard David [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 23, 2008 11:08 AM To: users@maven.apache.org Subject: Explicitly deactivated profiles activated by

RE: Is there easy way to check in plugin version

2008-04-23 Thread Brian E. Fox
I wrote about finding the version here: http://blogs.sonatype.com/brian/2008/04/10/1207873624557.html -Original Message- From: I am Who i am [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 22, 2008 5:47 PM To: Maven Users List Subject: Is there easy way to check in plugin version Hi All,

RE: Checkstyle Versions

2008-04-23 Thread Brian E. Fox
Chris, this is a commonly requested feature and you can see more info here: http://blogs.sonatype.com/brian/2008/04/23/120896598.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 22, 2008 9:00 PM To: Maven Users List Subject: Checkstyle

RE: MD5/SHA1 Hashes on artifacts

2008-04-23 Thread Brian E. Fox
Hashes are generated for everything shoved into the repository. Why wouldn't you want a hash on your sig? -Original Message- From: Chad La Joie [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 23, 2008 6:30 AM To: Maven Users List Subject: MD5/SHA1 Hashes on artifacts Maven produces

RE: Bug in Nexus repository?

2008-04-22 Thread Brian E. Fox
Your settings controls what Maven does. My guess is that the myfaces poms introduce the central repository with a different name. This is why we recommend using mirrorOf * (or external:* with 2.0.9+) so that you aren't constantly chasing repo ids. -Original Message- From: Sench

RE: start maven in 5 minutes

2008-04-21 Thread Brian E. Fox
You need the correct group: org.apache.maven.plugins -Original Message- From: Strecker, Nikolai [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 8:02 AM To: users@maven.apache.org Subject: start maven in 5 minutes Dear helper, I just downloaded maven and tried to start it, but

RE: pom.build.sourceDirectory in Maven 2.0.9: it doesn't work anymore!!!

2008-04-21 Thread Brian E. Fox
As I recall, there were several changes that broke and then put this back. I suspect your use of file: before the property could be causing the replication. Try using just the property and see if this works. Either way, please write an issue with a sample project and we'll fix it in .10 and

RE: collection of dependencies

2008-04-21 Thread Brian E. Fox
The plugin site shows several of the predefined ones to get you started. Then look at the descriptor options and tweak what you need. -Original Message- From: Karthik Krishnan [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 1:58 PM To: Maven Users List Subject: Re: collection of

RE: support for development of a pure javascript library

2008-04-21 Thread Brian E. Fox
It's in the sandbox: https://svn.codehaus.org/mojo/trunk/sandbox/javascript-maven-tools which means no release has been done yet. You should sign up to the [EMAIL PROTECTED] list and find out who the author is. Given that it's sandbox you'll probably have to help out or wait a bit ;-)

RE: issues with snapshot repo config in settings.xml

2008-04-20 Thread Brian E. Fox
First thing, disable releases for those repos to speed up the build a bit. Second, if you are using the snapshot repositories, you really should lock down the versions of your plugins, otherwise you may end up with a bunch of snapshots that you didn't intend. You can see more about how to do this

RE: How to filter test dependency?

2008-04-19 Thread Brian E. Fox
Copy-dependencies includes all scopes by default, specify the scope you want in the config. -Original Message- From: youhaodeyi [mailto:[EMAIL PROTECTED] Sent: Saturday, April 19, 2008 6:21 AM To: users@maven.apache.org Subject: RE: How to filter test dependency? It doesn't work. This

RE: How to filter test dependency?

2008-04-18 Thread Brian E. Fox
There are many ways to filter the contents of what this picks up. Take a look at the plugin docs: http://maven.apache.org/plugins/maven-dependency-plugin. I also wrote about using assembly and dependency plugin together and it shows how the filtering can work:

RE: maven-war-plugin:2.0.2 confuses relative path when run in the reactor

2008-04-18 Thread Brian E. Fox
It looks like the plugin is running in your parent, which is probably not what you wanted. You want this to be inherited but not run, so put it in the pluginManagment section instead. -Original Message- From: Harper, Brad [mailto:[EMAIL PROTECTED] Sent: Thursday, April 17, 2008 11:36 PM

RE: maven plug-gins

2008-04-18 Thread Brian E. Fox
See here: http://blogs.sonatype.com/brian/2008/04/10/1207873624557.html -Original Message- From: Paul Collins [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2008 7:56 AM To: users@maven.apache.org Subject: maven plug-gins Hi When executing a maven command the necessary plug-ins are

RE: maven-war-plugin:2.0.2 confuses relative path when run in the reactor

2008-04-18 Thread Brian E. Fox
the [already existing] build element in the dependent pom file. I'm seeing the same error. Brad -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2008 9:19 AM To: Maven Users List Subject: RE: maven-war-plugin:2.0.2 confuses relative path when

RE: Strange multi-module site generation problem with 2.0.9

2008-04-17 Thread Brian E. Fox
This is a problem with the beta-6 of the site plugin, try beta-5. -Original Message- From: justin_at_work [mailto:[EMAIL PROTECTED] Sent: Thursday, April 17, 2008 6:39 PM To: users@maven.apache.org Subject: Strange multi-module site generation problem with 2.0.9 I upgraded to Maven

RE: Email junit results in mvn2?

2008-04-17 Thread Brian E. Fox
A separate plugin would be handy, especially if the file sent was configurable, it could be used to send out many reports like pmd, checkstyle and junit. -Original Message- From: James William Dumay [mailto:[EMAIL PROTECTED] Sent: Thursday, April 17, 2008 7:26 PM To: Maven Users List

RE: Order of executing plugins changed in 2.0.9 ?

2008-04-16 Thread Brian E. Fox
Why would you declare the plugin twice in the same pom? Just put multiple executions in the same definition. -Original Message- From: Bernhard David [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 10:22 AM To: Maven Users List Subject: RE: Order of executing plugins changed in

RE: Maven 2.0.9 complains it can't download maven-surefire-plugin 2.4.2 -- NEED HELP

2008-04-16 Thread Brian E. Fox
That first URL has an extra org/apache/maven/ in it, and an extra / too. I imagine this is the source of your troubles. Wayne On 4/15/08, Brian E. Fox [EMAIL PROTECTED] wrote: The reason you see

RE: Expanding ... into null

2008-04-16 Thread Brian E. Fox
Can you write a jira for this? Just out of curiosity, why the file:/// in the first place? -Original Message- From: Selber, Heiko (NSN - DE/Berlin) [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 16, 2008 12:39 PM To: users@maven.apache.org Subject: AW: Expanding ... into null Hello,

RE: POM variables not expanded in resulting poms

2008-04-15 Thread Brian E. Fox
missing here? Normally that variable should be resolved as it is defined in one of the profiles defined in my settings.xml which is always activated. Brian E. Fox wrote: The properties are not expanded when sent to the repository because if they were then it would break inheritance when projects

RE: Maven 2.0.9 complains it can't download maven-surefire-plugin 2.4.2 -- NEED HELP

2008-04-15 Thread Brian E. Fox
The reason you see this with 2.0.9 is probably because it bumped you up to surefire 2.4.2, but otherwise nothing in 2.0.9 changed that should affect this. It's a little hard to know why you can't get that jar. Are you able to load it from a browser without a proxy? Adding the ibiblio repo

RE: disabling default deploy behavior

2008-04-15 Thread Brian E. Fox
You can't really, but what you could do is change the distMgt url to some local file like c:\trash -Original Message- From: Dmitry Beransky [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 15, 2008 3:02 PM To: Maven Users List Subject: disabling default deploy behavior Hi, We've

RE: Usage of public repositories - please suggest

2008-04-15 Thread Brian E. Fox
This is why many people have started using repository managers to isolate themselves from changing remote repositories. There's no way to know how stable the remotes are. Naturally something like jboss and the sun repos are probably not going to disappear tomorrow, but that's not to say there

RE: Definitive Guide - is it real?

2008-04-14 Thread Brian E. Fox
Maybe we should add a chapter to the book to show how to make the book? -Original Message- From: Manfred Moser [mailto:[EMAIL PROTECTED] Sent: Monday, April 14, 2008 12:14 AM To: users@maven.apache.org Subject: Re: Definitive Guide - is it real? Jason van Zyl-2 wrote: Right,

RE: POM variables not expanded in resulting poms

2008-04-14 Thread Brian E. Fox
The properties are not expanded when sent to the repository because if they were then it would break inheritance when projects used that pom from the repo. There would no longer be any properties for people to inherit and override. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: Repository search order

2008-04-12 Thread Brian E. Fox
Usually corporations want the central control that delegating everything to a single url provides. However you are still able to address the individual repositories if you want. This will also allow you to switch the urls with a profile. For machines that are entirely internal (corp desktops),

RE: build times doubled moving from 2.0.8 to 2.0.9

2008-04-11 Thread Brian E. Fox
Doubled in what context? 30 seconds to 1 minute or 30 minutes to 1 hour? The plugins in 2.0.9 have default versions now, if you haven't locked down your versions, then you potentially also upgraded several plugins at the same time. One of those could be the culprit. I wrote about this aspect of

RE: Looking to make internal repository externally access

2008-04-11 Thread Brian E. Fox
How you secure it depends on what you use to run your repo. If it's one of the repo managers, then you would configure security there. If it's something simple like apache, then you would add one of the many authentication modules. -Original Message- From: Mike Leonardo [mailto:[EMAIL

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