Re: dependency:tree not working in maven 2.0.7

2007-11-28 Thread Marcel Schutte
Well, actually, I would much prefer a release of version alpha-5 :) It's been awhile and I would like to try this dependency:tree functionality too. Marcel On Nov 27, 2007 11:38 PM, Wendy Smoak [EMAIL PROTECTED] wrote: On 11/27/07, bryan ward [EMAIL PROTECTED] wrote: Thanks for the

Re: release plugin configuration

2007-09-05 Thread Marcel Schutte
though. -- Daniel Siegmann FJA-US, Inc. 512 7th Ave. 15th Flr. New York, NY 10018 (212) 840-2618 x139 -Original Message- From: Marcel Schutte [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 12:05 PM To: Maven Users List Subject: Re: release plugin configuration I want to run

Re: release plugin configuration

2007-09-05 Thread Marcel Schutte
it is by default, most things in maven are left the default way because they give the highest quality results On Wednesday 05 September 2007 04:04, Marcel Schutte wrote: I want to run test in release:prepare but skip them in release:perform. And that's because I just don't want to run them twice

release plugin configuration

2007-09-04 Thread Marcel Schutte
Hello all, Is there a way to specify different configurations for the release:prepare and release:perform goals without using profiles? Specifically, what I'm trying to do is pass configuration arguments-Dmaven.test.skip=false/arguments /configuration

Re: release plugin configuration

2007-09-04 Thread Marcel Schutte
/maven.test.skip /properties /profile /profiles activeProfiles activeProfileenv-dev/activeProfile /activeProfiles by adding the activeProfile tag, you'll be able to select a profile which will be always used on that machine. Arnaud Marcel Schutte a écrit : Hello all, Is there a way

Re: Community review of the next commons-logging pom

2007-08-28 Thread Marcel Schutte
Hi Dennis, I've got two remarks: - You should really make sure that all plugins have a version declared. There are definitely differences between versions, so the reproducibility of your builds can only be guaranteed by using explicit versions. - The artifacts commons-logging,

Re: release:prepare must be runned twice?

2007-08-21 Thread Marcel Schutte
version 2.0-beta-5 of the maven-release-plugin will automatically transform all dots to underscores before tagging. Regards, Marcel - Original Message From: houzecl [EMAIL PROTECTED] To: users@maven.apache.org Sent: Tuesday, August 21, 2007 2:41:36 PM Subject: Re: release:prepare must

Re: List dependencies NOT used

2007-08-01 Thread Marcel Schutte
Take a look at the dependency plugin. It has a goal analyze-dependencies. - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: users@maven.apache.org Sent: Wednesday, August 1, 2007 10:30:03 AM Subject: List dependencies NOT used Hi, Is it possible to get a list of

Re: Maven2 POM Continuum configuration

2007-07-18 Thread Marcel Schutte
Hi Aaron, I'm using the following: notifiers notifier typemail/type sendOnErrortrue/sendOnError sendOnFailuretrue/sendOnFailure sendOnSuccesstrue/sendOnSuccess sendOnWarningtrue/sendOnWarning configuration address[EMAIL

Re: Some guidance using EJB client dependencies

2007-05-29 Thread Marcel Schutte
Hi Alexander, Don't have answers for you, as I stopped using ejb-clients because of similar problems. I believe specifying type ejb and classifier client worked. For me the biggest problem is that an ejb-client artifact cannot declare that it only has a subset of the ejb's dependencies.

Re: Some guidance using EJB client dependencies

2007-05-29 Thread Marcel Schutte
Hi Alexander, What I mean is that an ejb-client artifact normally has far less dependencies than the ejb artifact. A typical ejb in our case uses hibernate for its persistence, but of course an application that wants to call this ejb by using the ejb-client doesn't want this (and all

Re: Some guidance using EJB client dependencies

2007-05-29 Thread Marcel Schutte
for the ejb and ejb-client that uses includes or excludes to indicate which dependencies you need for the ejb-client. Typically, this won't be very much. Regards, Marcel - Original Message From: Alexander Sack [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org; Marcel Schutte

Re: Some guidance using EJB client dependencies

2007-05-29 Thread Marcel Schutte
- Original Message From: Alexander Sack [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org; Marcel Schutte [EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 5:59:46 PM Subject: Re: Some guidance using EJB client dependencies Marcel, Okay, classical manifest examples (straight out of the spec

Re: Jar mojo. Adding a classes folder to the produced jar file

2007-05-26 Thread Marcel Schutte
Hi, I would say this is more a task for the assembly plugin. A jar file should only contain folders that correspond to packages. Regards, Marcel - Original Message From: David J. M. Karlsen [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent: Friday, May 25, 2007

Re: classpath clarification

2007-05-15 Thread Marcel Schutte
Hi Monty, You shouldn't use ClassLoader.getSystemClassLoader() to lookup your class. Maven uses a hierarchy of classloaders and by specifying that you want the systemclassloader, you bypass this completely. Instead, try with

Access file resources from ant based plugin

2007-05-03 Thread Marcel Schutte
Hello, I've written an ant based plugin that needs access to file based resources. For example, an xslt task needs a file path to the stylesheet it applies. Simply putting this stylesheet in src/main/resources won't work, because it will end up in the plugin's jar file. The only way around it

Re: M2 : Controlling WEB-INF/lib contents in war

2007-04-18 Thread Marcel Schutte
Hi James, Please take a look at http://jira.codehaus.org/browse/MEAR-60. This improvement should help you get rid of the duplicate dependency declarations. Please vote for it or comment if you see other ways to solve this problem. Regards, Marcel - Original Message From: Shute, James

Re: Maven 2 ear plugin doesn't pick up resources

2007-04-16 Thread Marcel Schutte
Hi, You shouldn't use the resources section in the pom for this. Instead take a look at the docs for the ear plugin, especially the earSourceDirectory. Combine this with earSourceIncludes /-Excludes to do what you want. Regards, Marcel - Original Message From: Johan Eltes [EMAIL

Re: How to generate manifest ClassPath entries for a web project?

2007-04-12 Thread Marcel Schutte
See http://jira.codehaus.org/browse/MEAR-60 for a suggested improvement to the 'downside' of this solution. Please vote for this issue if you want it fixed. Regards, Marcel - Original Message From: Manos Batsis [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Thursday,

Re: Manipulating the surefire booter classpath

2007-04-05 Thread Marcel Schutte
Recently I used -Xbootclasspath/a: to add dependencies to the forked VM's classpath. I did this because there was some legacy code involved that insists on reading stuff with a getSystemResource(). Regards, Marcel - Original Message From: Wayne Fay [EMAIL PROTECTED] To: Maven Users

Re: Restricting maven build from accessing central repo

2007-03-19 Thread Marcel Schutte
Hi Brinnel, You could define a repository in your settings.xml with id central, I believe this overrides the built-in definition that takes you to repo1.maven.org Regards, Marcel - Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: users@maven.apache.org Sent: Monday,

Re: Generated Jar Manifest Contains Maven Jars

2007-03-16 Thread Marcel Schutte
On 3/16/07, SingleShot [EMAIL PROTECTED] wrote: I've configured the JAR plugin to generate a Manifest with a classpath per the online documentation: configuration archive manifest mainClassfully.qualified.MainClass/mainClass

Please release maven-release-plugin 2.3.1

2007-01-16 Thread Marcel Schutte
Hello list (and especially Stéphane Nicoll), On maven-dev I see that the vote for a release of maven-release-plugin 2.3.1 has been open til january 12. I don't see any votes against it. Could you please perform the release? Regards, Marcel

Re: Please release maven-release-plugin 2.3.1

2007-01-16 Thread Marcel Schutte
Hi Stephane, Yes, sorry. I meant maven-ear-plugin. Can you give me an indication when this can be released? Regards, Marcel - Original Message From: Stephane Nicoll [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org; Marcel Schutte [EMAIL PROTECTED] Sent: Tuesday, January

Re: [ANN] Maven EAR Plugin 2.3 Released

2006-12-31 Thread Marcel Schutte
Hi all, I am very surprised by the discussion in http://jira.codehaus.org/browse/MEAR-46 regarding the inclusion of ejb-client type dependencies in the generated application.xml. Even though David and Stephane agree that ejb-client != application client, Stephane has made it default behaviour

Re: [vote] Re: maven-war-plugin 2.0.2

2006-10-24 Thread Marcel Schutte
I would definitely like to see more plugin releases. Second best would be an overview of what priorities the maven 2 committers follow at the moment. Perhaps they are focusing on maven 2.0.5, maybe 1.1 I don't know, but once I know, I can be a lot more patient. Marcel --- Mark Hobson [EMAIL

Re: m2/eclipse/wtp configuration + tapestry

2006-08-03 Thread Marcel Schutte
Borut, I followed these steps, but at nr. 5 when I select 'LibCopy properties' I get an error 'Property page Creation Problems' with reason 'Plugin-in libcopy was unable to load class libcopy.properties.LibCopyPropertyPage'. I'm using eclipse 3.2 with WTP 1.5. Does anyone have any clues?

Re: Projects in Continuum not building

2006-07-06 Thread Marcel Schutte
Hi Alex, Try checking the continuum configuration of your project. Does it contain a value in the 'scm branch/tag' field? What happened with some of my continuum builds recently was that they must have started at a moment I was manually building a release. During a release, maven will commit two

Re: hsqldb plugin

2006-06-01 Thread Marcel Schutte
Have you considerd using the in-process mode? See http://www.hsqldb.org/doc/guide/ch01.html#N101A8. The advantage is that you don't have to worry about starting a separate db server process and waiting for it to start up. Marcel --- Dan Adams [EMAIL PROTECTED] wrote: I need to start an

Re: How to get all the tests run even if an error occur in a maven multiproject

2006-05-30 Thread Marcel Schutte
Try 'mvn -fae test'\, I think that is what you need. For a complete list of options see 'mvn -h'. Marcel --- emerson cargnin [EMAIL PROTECTED] wrote: I know I can use it (and maven.test.error.ignore), the problem is that the build doens't fail at the end... On 30/05/06, Roland Asmann

Re: How to get all the tests run even if an error occur in a maven multiproject

2006-05-30 Thread Marcel Schutte
Sorry, I missed the maven version you're using. This info is for M2. --- Marcel Schutte [EMAIL PROTECTED] wrote: Try 'mvn -fae test'\, I think that is what you need. For a complete list of options see 'mvn -h'. Marcel --- emerson cargnin [EMAIL PROTECTED] wrote: I know I can use

central repository search tools

2006-05-09 Thread Marcel Schutte
Hi, Just came across these sites. They can be used to search ibiblio in a more maven friendly way than you can with google. http://www.mvnregistry.com http://mvnrepository.com Regards, Marcel Schutte __ Do You Yahoo!? Tired of spam? Yahoo! Mail

Re: release plugin clearcase

2006-04-27 Thread Marcel Schutte
I'm not a clearcase user, but it seems to me that cs doesn't like the location maven uses to checkout the source and do the release build. You could try changing this location with a -DworkingDirectory=yourdir. The default is ${project.build.directory}/checkout. Marcel --- Tom Huybrechts [EMAIL

Re: NTLM Proxy problems

2006-04-27 Thread Marcel Schutte
Chris, You could give the NTLM Authorization Proxy Server (http://apserver.sourceforge.net/) a try. I'm using it and it works just fine for me. Regards, Marcel --- Chris Polderman [EMAIL PROTECTED] wrote: Hello! I am currently developing from behind a proxy firewall (NTLM kind) and it

Re: Set default deploy server in settings.xml?

2006-04-27 Thread Marcel Schutte
inline --- Clifton Craig [EMAIL PROTECTED] wrote: On Thursday 27 April 2006 1:18 pm, dan tran wrote: If you plan to have all of your projects deployed on teh same server, you should be able to setup the global settings.xml in m2home/conf. Checkout Settings.xml doc at maven site

RE: [m2] Generating was5 ejb code ?

2006-01-23 Thread Marcel Schutte
Hi Malcolm, Are the EJB classes it is complaining about inside the jar you are trying to generate the deploy code for? I seem to recall that WAS doesn't like it when EJB classes are not directly in the jar but instead are referenced through a manifest classpath entry. Regards, Marcel ---

RE: Another CLASSPATH question

2006-01-19 Thread Marcel Schutte
Hi Sandeep, I don't think you have compile time dependencies on all 50 of them, or do you? For instance, in our company repository we have 6 jars that are connected to CICS ECI. We don't have compilation dependencies on them, but we need them to run our unit tests. So I ended up installing 6 jars

Re: [m2] Generating was5 ejb code ?

2006-01-19 Thread Marcel Schutte
This works for me, but a real plugin would be nicer: In my pom.xml: plugin artifactIdmaven-ejb-plugin/artifactId configuration archive manifest addClasspathtrue/addClasspath /manifest /archive generateClienttrue/generateClient clientExcludes

RE: [m2] Generating was5 ejb code ?

2006-01-19 Thread Marcel Schutte
I assume you mean the project directory layout. We use the WSAD form with ejbmodule for java sources etcetera. --- Malcolm Wong Ho [EMAIL PROTECTED] wrote: How do you cope with project structure? do you use M2 or Wsad/RAD project structure ?

RE: [m2] war dependencies in ear

2006-01-05 Thread Marcel Schutte
should be provided by its containg ear. Regards, Marcel Schutte __ Yahoo! DSL – Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com - To unsubscribe

Re: [m2] war dependencies in ear

2006-01-05 Thread Marcel Schutte
I was thinking also about war projects which can be installed as standalone applications (then they should include all their dependencies in the WEB-INF/lib) and as a part of ear also (then they should not include dependencies which are common for other ear modules). Any support for this

Re: SV: LOTS of dependencies just not found

2005-12-28 Thread Marcel Schutte
I like this too, perhaps deploy:deploy and deploy:deploy-file could check the dependencies for existence. Regards, Marcel --- David Sag [EMAIL PROTECTED] wrote: I think that is actually an excellent solution - i am going through similar pain right now - our build of maven2 does what we want

[m2] maven-war-plugin multiple patterns in warSourceExcludes not working

2005-12-06 Thread Marcel Schutte
Hi all, I'm running on the latest svn builds of maven and plugins. Maven-war-plugin version is 2.0-beta-3-SNAPSHOT. When I put a single pattern in warSourceExcludes it is excluded normally. However, when I use a string of comma separated values nothing is excluded anymore. Is this known behavior?

Re: unable to download surefire plugin

2005-11-24 Thread Marcel Schutte
with a lastmodified of 24/11/2005. Regards, Marcel Schutte --- Edwin Punzalan [EMAIL PROTECTED] wrote: In case any of you get an error similar to this: [INFO] Failed to resolve artifact. required artifacts missing: maven-surefire

Re: Using Maven as Eclipse class-path container

2005-11-07 Thread Marcel Schutte
Sounds like a good idea. I think the eclipse plugin works only in the opposite direction, generating .classpath etc files for eclipse to use. A problem might be that eclipse doesn't have the concept of scopes for its dependencies. Marcel --- Michael Böckling [EMAIL PROTECTED] wrote: Hi, I'd

Re: sun jars

2005-10-19 Thread Marcel Schutte
Couldn't someone from the maven development team ask Sun for their explicit permission to publish all these jars? As we say in Holland: 'Nee heb je, ja kun je krijgen' ('No you've got, yes you can get'). Marcel --- Arik Kfir [EMAIL PROTECTED] wrote: Yes, you are right. It wouldn't make much

Maven 1.0.2 documentation

2005-09-07 Thread Marcel Schutte
Hi, I'm using maven 1.0.2 and I'm looking for the documentation. The docs on the site currently are for the 1.1 beta version. I've already done a subversion checkout of maven-1/core/tags/MAVEN_1_0_2 and generated the site for that. This gives me the main documentation. Now I also want the docs