Re: module ordering

2007-07-13 Thread Kenney Westerhof
Hi, This is a bug in the enforcer plugin. Disabling it from the core-parent pom fixes it. -- Kenney Steve Ebersole wrote: I am having a problem getting multi-module builds to work right. All this stuff is publicly accessible, if someone was willing to take a look and try to help me figure

Re: [m2] How do I specify the target DIR of a resource with the resource

2007-07-13 Thread Kenney Westerhof
Yout your resources in src/main/resources/META-INF/ -- Kenney Mick Knutson wrote: I want to put my resources into /META-INF/* But can't find anything about this in the plugin docs - To unsubscribe, e-mail: [EMAIL

Re: upgrading from 2.0.4 - 2.0.7?

2007-07-13 Thread Kenney Westerhof
Hi, If you just _use_ maven 2.0.4, install 2.0.7 and use that. No pom changes required. All modelVersion4.0.0/modelVersion poms currently work with all versions of maven 2.0. -- Kenney Roger Huang (rchuang) wrote: I'm inheriting a project that uses Maven 2.0.4, and want to upgrade to 2.0.7.

Re: Checkstyle plugin - need list of params that can be set

2007-07-13 Thread Kenney Westerhof
Si_Simon wrote: Where can I find a complete list of parameters that can be set in the configuration section of the Maven2 Checkstyle plugin? http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo.html -- Kenney thanks Si'mon

Re: How to get a plugin to see my log4j.xml

2007-07-11 Thread Kenney Westerhof
Hi, Dennis is abslutely right. There's one other way that doesn't require modification or building of the plugin, but I'm not sure it'll work, though it's worth a shot: create a new maven project that only contains src/main/resources/log4j.xml, mvn install it, and add a dependency on that

Re: Maven Error - is duplicated in the reactor

2007-06-16 Thread Kenney Westerhof
Hi, Jo Vandermeeren wrote: On 5/30/07, Stefano Bagnara [EMAIL PROTECTED] wrote: This is not coherent. You say groupId + artifactId + versionId uniquely identify an artifact. So I should be able to manage multiple versions of the same artifact in a single reactor build. What you say should

Re: Ant Plugin Tip

2007-06-16 Thread Kenney Westerhof
John Stauffer wrote: I am trying to use ant to develop a new packaging type, and have everything working as expected, but have been unable to figure out how to set the artifact file for the project as part of the packaging mojo. According to the docs I've found, if I were using Java for this,

Re: calling plugin in another plugin?

2007-06-08 Thread Kenney Westerhof
- From: Kenney Westerhof [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 5:48 PM To: Maven Users List Subject: Re: calling plugin in another plugin? Nunn, Gerald wrote: Jason, It's a bad practice, and leads to coupling between plugins which is bad. We've seen the aftermath

Re: calling plugin in another plugin?

2007-06-08 Thread Kenney Westerhof
into the release manager and be executed. That's imho the proper approach. -- Kenney ..David.. -Original Message- From: Kenney Westerhof [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 5:48 PM To: Maven Users List Subject: Re: calling plugin in another plugin? Nunn, Gerald wrote

Re: Build of maven 2.0.x branch: test failures

2007-06-08 Thread Kenney Westerhof
Graham Leggett wrote: On Wed, June 6, 2007 4:53 pm, Jason van Zyl wrote: Just built and it works fine. You on windows? On windows and inside a firewall: --- T E S T S --- Running

Re: maven2: How do I run pre and post test initialization and cleanup scripts

2007-06-07 Thread Kenney Westerhof
Sidharth Kuruvila wrote: I have a few scripts that I would like to run before the unittests. These are currently shell scripts but I plan on converting them into jython scripts. How do i set things up so that maven executes them? Is there general practice for setting up the environment for

Re: NoSuchMethodError with surefire-booter-2.3.1-20070606.032942-4

2007-06-06 Thread Kenney Westerhof
Hi, I just redeployed all of the surefire artifacts for 2.3.1, so, could you test again and let me know if it's fixed now? I think someone deployed the booter and not the plugin or vice versa. -- Kenney Ole-Martin Mørk wrote: [INFO] Trace java.lang.NoSuchMethodError:

Re: calling plugin in another plugin?

2007-06-06 Thread Kenney Westerhof
Nunn, Gerald wrote: Jason, It's a bad practice, and leads to coupling between plugins which is bad. We've seen the aftermath of this happening in Maven 1.x. Since I'm doing this already I'm curious how this could be done better and accomplish my goal, I'm a relative newbie to Mojos so I'm

Re: Plugin order when all plugins have the same phase

2007-05-30 Thread Kenney Westerhof
Hi, Can you paste your pom.xml here? If you define 2 (different) plugins in the same phase, they should be executed sequentially (at least with maven 2.0.6). The only reason i can think of that only one of them executes is that you declared the same plugin twice, where the latter will

Re: Accessing web source path inside plugin

2007-05-30 Thread Kenney Westerhof
Hi, Unfortunately there's no pom element that describes the webapp source path, so there's no expression for it.. the war plugin uses src/main/webapp as a default. If you have other plugins that use that directory you have to configure them; unless ofcourse the plugins have a default to

Re: Maven scm:update

2007-05-30 Thread Kenney Westerhof
your scm url is wrong. use: scm:svn:https://. -- Kenney Jens Hohl wrote: Hello, how to configure Maven that scm:update will work with HTTPS using SVN ? I get following Error: Embedded error : Can't load the scm provider. No such provider 'HTTPS' ... If it is not possible

Re: What is the Best practice for generating variations of an artifacts?

2007-03-16 Thread Kenney Westerhof
Hi, Vincent Massol wrote: Hi, I've never found a good answer to this use case so far so I'm curious about how others have implemented it. Imagine a project that generates a WAR. This WAR contains a config file (say in WEB-INF/classes) that configures connection parameters for the

Re: Project is duplicated in the reactor

2006-11-02 Thread Kenney Westerhof
Hi, this is a user question and should be posted on the user list. Posting the answer on the user list. Quick answer: you probably have 2 projects with the same groupId/artifactId (copy paste error when creating pom.xml files?). The other possible cause is that you define the same module twice

Re: ftp-wagon : Authentication failed

2006-10-31 Thread Kenney Westerhof
Your repository id (portal-repository) does not match the server's id. -- Kenney Jeff Mutonho wrote: In my settings.xml I have servers server id165.148.216.14/id usernamemaven/username passwordmaven/password /server /servers and in the top-level pom distributionManagement

Re: Patching plugins

2006-10-08 Thread Kenney Westerhof
-SNAPSHOT is newer, which is strange. How is this supposed to work? That makes sense to me. Maven thinks -INTERNAL is a *fixed* version. It's no different than 1.2 or 1.3-beta. It's just some version, deployed at some point in the past. The -SNAPSHOT version is the latest. If you read

Re: Server certificate verification failed: issuer is not trusted

2006-10-07 Thread Kenney Westerhof
Hi, You'll need to install the certificate for the website manually. See http://docs.codehaus.org/display/HAUSMATES/WebDAV#WebDAV-WebDAVInstallingtheAddTrustCAintotheJavaJDK for an example of how to do this. -- Kenney frenchm wrote: Hi, I am try to get continuum to build my m2 multi

Re: M2 release plugin snapshot version does not handle new development d

2006-09-30 Thread Kenney Westerhof
Hi, This is not a bug - the release plugin just updates the module you're releasing. Dependencies should be updated manually, since changing versions might break things. What you could do though is specify ${pom.version} for the version in your dependencies. -- Kenney shinsato wrote: Did

Re: Release Failure [SOLVED]

2006-09-30 Thread Kenney Westerhof
Hi, The NPE is definitely a bug. But connection IS mandatory, and developerConnection isn't. DeveloperConnection is meant to be an override for connection, if the developer URL (write access) is different from the URL for read-only access. So normally you'd only specify the connection. Btw,

Re: Patching plugins

2006-09-30 Thread Kenney Westerhof
Hi, Not that I'm aware of, but it's basically the same as providing patches for any open source project: check out the source, modify it, svn diff patch and attach the patch to the issue tracker so others can benefit. What part of the wiki is unclear? -- Kenney jan_bar wrote: Hi, I need

Re: M2 release plugin snapshot version does not handle new development d

2006-09-30 Thread Kenney Westerhof
LAMY Olivier wrote: This is not a bug in case of reactor projects : sure ? Have a look : http://jira.codehaus.org/browse/MRELEASE-91 I have to agree with Mike Perham there. But the fact that dependencies and dependencyManagement are treated differently is a bug, though. I don't think

Re: Patching plugins

2006-09-30 Thread Kenney Westerhof
Hi, So your question is really 'how do I share plugins in my company?'. You'll want to set up a remote repository first see [1]. Next you'll have to add a pluginRepository definition for that url in your companies root pom (or in the top level pom of the project). See [2]. Finally you'll

Re: Yet another question about multi module reporting...

2006-08-13 Thread Kenney Westerhof
Sure, but you have to do 2 things: 1) edit site.xml and remove the ${modules} (or the menu ref=modules/) 2) configure all plugins to be aggregating in the reports section in the root pom. Not all plugins support aggregation, though, and I'm not sure if that's desirable (i.e. the surefire

Re: [m2] xdoclet with MDBs

2006-07-17 Thread Kenney Westerhof
the Maven - Users forum at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge

Re: Executing java code during build

2006-07-17 Thread Kenney Westerhof
themselves. That's why it doesn work 'out of the box'. But since this is such a popular request, there will probably be a utility method somewhere that constructs your classloader for you, in the near future. -- Kenney Tnx and regards, Alex Kenney Westerhof wrote: On Sat, 15 Jul 2006, Tim

Re: target in antrun

2006-07-16 Thread Kenney Westerhof
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Executing java code during build

2006-07-16 Thread Kenney Westerhof
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http

Re: [m2] maven-it-plugin

2006-07-12 Thread Kenney Westerhof
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Effective-pom and junit M2

2006-07-12 Thread Kenney Westerhof
, but am I just seeing that it has been reintroduced ? http://jira.codehaus.org/browse/MNG-2068 Thx Andy -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail

Re: How to configure attached tests?

2006-07-06 Thread Kenney Westerhof
are not being run. The attached test jar is listed in the classpathElements display by mvn -X test Paul Spencer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof

Re: Generating ejb-client jar

2006-06-20 Thread Kenney Westerhof
on this would be appreciated.. Regards, Jo -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: antrun classpaths

2006-06-13 Thread Kenney Westerhof
=maven.runtime.classpath/ /path taskdef resource=axis-tasks.properties classpathref=axis.classpath / On 6/12/06, Kenney Westerhof [EMAIL PROTECTED] wrote: On Mon, 12 Jun 2006, Lee Meador wrote: Hi, I can't reproduce this with 'inheritRefs=true'. What do you have in your

RE: Error looking up lifecycle mapping to retrieve optional mojos

2006-06-12 Thread Kenney Westerhof
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Cactus plugin?

2006-06-12 Thread Kenney Westerhof
titre de ce message, dans l'hypothese ou il aurait ete modifie. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http

Re: include dependencies in a plugin

2006-06-12 Thread Kenney Westerhof
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [M2] Struts and XDoclet

2006-06-12 Thread Kenney Westerhof
/ strutsvalidationxml validatexml= true version= 1.1.3/ /webdoclet /tasks /configuration /execution /executions /plugin /plugins /build /project -- Kenney

Re: antrun classpaths

2006-06-12 Thread Kenney Westerhof
Meador Sent from gmail. My real email address is [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Parent vs. Multi Project super pom

2006-06-12 Thread Kenney Westerhof
] For additional commands, e-mail: [EMAIL PROTECTED] -- Stephen Duncan Jr www.stephenduncanjr.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http

Re: Maven 2 ant run plugin - error in multi project build

2006-06-11 Thread Kenney Westerhof
) at org.apache.maven.plugin.DefaultPluginManager.getConfiguredMojo(DefaultPlugin Manager.java:524) ... 18 more - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public

Re: + JBoss Embedded EJB3 and Surefire Plugin Maven 2 PROBLEM+

2006-06-03 Thread Kenney Westerhof
Memory: 3M/7M [INFO] (ivan) [591] -- -- Serge Emmanuel Pagop Java EE Consultant and Trainer E-Mail: [EMAIL PROTECTED] Skype-Name: sisepago Cell : +49-172-8552687 -- Kenney Westerhof

Re: + JBoss Embedded EJB3 and Surefire Plugin Maven 2 PROBLEM+

2006-06-03 Thread Kenney Westerhof
-- -- Serge Emmanuel Pagop Java EE Consultant and Trainer E-Mail: [EMAIL PROTECTED] Skype-Name: sisepago Cell : +49-172-8552687 -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Binding a plugin execution to a lifecycle phase JUST for one packaging type

2006-06-03 Thread Kenney Westerhof
-- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [M2] How to change log level of maven?

2006-06-02 Thread Kenney Westerhof
loglevels that are accessible through the commandline. -- kenney - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http

Re: [m2] XDoclet generated resources problem

2006-06-01 Thread Kenney Westerhof
: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: site child module listing

2006-05-31 Thread Kenney Westerhof
PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: changelog null pointer exeception

2006-05-31 Thread Kenney Westerhof
-- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] assembly from parent

2006-05-29 Thread Kenney Westerhof
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Unable to locate local repo in Mac-OSX(how to call ant from maven)

2006-05-29 Thread Kenney Westerhof
] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Unable to locate local repo in Mac-OSX(how to call ant from maven)

2006-05-29 Thread Kenney Westerhof
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Subclassign AbstractAntMojo

2006-05-27 Thread Kenney Westerhof
, and I don't see why. Since I have been working from my intuition only, I assume that I just don't have a clue on how to do this properly. So the question is if anybody has ever given this a try and knows what to do to make it work? Thanks, Wilfred -- Kenney Westerhof http://www.neonics.com

Re: [m2] Getting SNAPSHOT information into a webapp

2006-05-23 Thread Kenney Westerhof
, Mark C - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: How to notify developers that test(s) fail?

2006-05-23 Thread Kenney Westerhof
, this hate mail could go to just the offending developer but in any case I need an HTML report that shows what test failed and why. What is the best way to do this? -dh -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: [m2.0.4] -Dmaven.test.skip=false won't override settings.xml -- bug or intentional?

2006-05-20 Thread Kenney Westerhof
on the command line should override any property values from pom.xml or settings.xml files. Thanks, -Max - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http

Re: project.properties and outputDir

2006-05-20 Thread Kenney Westerhof
/properties /profile /profiles /settings -- Kenney i am running evrything by typing mvn clean install anyone could help? thanks and regards marco -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: project.properties and outputDir

2006-05-20 Thread Kenney Westerhof
On Sat, 20 May 2006, Marco Mistroni wrote: Hi, Hello Kenney, thanx for suggestion,but still getting [snip] settings profiles profile You should add a profile id: idsomething/id activation activeByDefault/ Sorry, missed this. You should put

Re: Cannot find jar

2006-05-19 Thread Kenney Westerhof
contains the following package? org.apache.avalon.framework.configuration Thanks! -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Maven2 versus JAXB

2006-05-17 Thread Kenney Westerhof
groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId configuration source1.5/source target1.5/target /configuration /plugin /plugins /build /project -- Kenney Westerhof http://www.neonics.com

Re: Why does Maven 2 keep trying to download stuff that i put in my local repository

2006-05-13 Thread Kenney Westerhof
. I haven't seen Maven 2 ask me anything like that, yet. Maven 1 does, IIRC. :) Updating plugins is pretty easy in m2: just specify the '-cpu' argument (see mvn --help). -- Kenney On 5/12/06, Stefan Arentz [EMAIL PROTECTED] wrote: On 5/12/06, Kenney Westerhof [EMAIL PROTECTED] wrote

Re: Why does Maven 2 keep trying to download stuff that i put in my local repository

2006-05-12 Thread Kenney Westerhof
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public

Re: Why does Maven 2 keep trying to download stuff that i put in my local repository

2006-05-12 Thread Kenney Westerhof
On Fri, 12 May 2006, Stefan Arentz wrote: [snip] Yup. No ~/.m2/repository/javax/persistence/ejb/3.0/ejb-3.0.pom I don't have a plugin-registry.xml. There is a ~/.m2/repository/org/apache/maven/plugins/maven-install-plugin/2.0 though. And I just deleted it. Now when I add the EJB3 jar, I

Re: Plugin to compile C and C++ projects

2006-05-12 Thread Kenney Westerhof
? Best Regards Vandermi Silva RD MAO - Core Engines BenQ Eletroeletr�nica Ltda. TEL +55(92) 2127-8015 Mobile: +55(92) 8125-2248 FAX +55(92) 2127-8102 [EMAIL PROTECTED] www.BenQMobile.com Av. Djalma Batista, 536 - S�o Geraldo Manaus-AM Brasil -- Kenney Westerhof http

Re: [m2] release:prepare - subversion problem

2006-05-11 Thread Kenney Westerhof
On Thu, 11 May 2006, Jos van der Heiden wrote: Hoi Jos, I'm having a problem with release:prepare. [snip] When maven tries to create a tag, it gets an error back from subversion: svn: Source url 'svn://myhost/myrepo/trunk' is from different repository [snip]

Re: maven-source-plugin 2.0.1

2006-05-11 Thread Kenney Westerhof
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: maven-source-plugin 2.0.1

2006-05-11 Thread Kenney Westerhof
On Thursday 11 May 2006 19:48, Kenney Westerhof wrote: On Thu, 11 May 2006, Roland Asmann wrote: The source plugin needs to run the generate-sources phase, else it might miss something in creating a jar. This was indeed fixed in 2.0.1. If you do 'mvn clean source:jar' on a source

Re: [1.1] Hung build - threaddump

2006-05-08 Thread Kenney Westerhof
:95) at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java :186) at org.apache.commons.jelly.tags.core.IfTag.doTag(IfTag.java:42) -- Esse quam videri (to be rather than to seem) -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge

Re: M2 Assembly pack files into root

2006-05-07 Thread Kenney Westerhof
] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Parent Pom: Needs some do as I say, not as I do

2006-05-06 Thread Kenney Westerhof
, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Parent Pom: Needs some do as I say, not as I do

2006-05-06 Thread Kenney Westerhof
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL

Re: [m2] Plugin and SNAPSHOT woes

2006-05-03 Thread Kenney Westerhof
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail

Re: [m2] Plugin and SNAPSHOT woes

2006-05-03 Thread Kenney Westerhof
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Probelm with persistence.xml

2006-05-02 Thread Kenney Westerhof
Anshuman - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Probelm with persistence.xml

2006-05-02 Thread Kenney Westerhof
Anshuman On 5/2/06, Kenney Westerhof [EMAIL PROTECTED] wrote: On Tue, 2 May 2006, Anshuman Srivastava wrote: Hi, Every ejb module has its own persistence manager, so you really need 2 persistence.xml files (unless I'm wrong..) I've got one in src/main/par/META-INF

Re: [m2/m2-book] MANIFEST.MF and Class-Path.

2006-05-02 Thread Kenney Westerhof
-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JUnit Eclipse vs. Maven Question

2006-05-02 Thread Kenney Westerhof
portable. Hope this helps, -- Kenney -Stephen On 5/2/06, Kenney Westerhof [EMAIL PROTECTED] wrote: On Tue, 2 May 2006, Stephen Duncan wrote: Hi, The library path is only scanned on JVM startup; you can't modify it later and expect the JRE to load any additional libraries. You'll

Re: Problem with Continuum and Maven

2006-05-01 Thread Kenney Westerhof
contraire fourni par �crit, ne sont pas endoss�es par aucun membre du Groupe HSBC. *** -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: [M2-book]

2006-04-30 Thread Kenney Westerhof
Project : http://www.epseelon.net Blog : http://sebastien-arbogast.epseelon.net TagSpot : http://www.tagspot.org -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe

Re: [M2-book]

2006-04-30 Thread Kenney Westerhof
precisely the kind of situation where I love Open Source! Maven rocks! And huge thanks to all the people who participated in the redaction of this excellent book. And to all the Maven community as well! 2006/4/30, Kenney Westerhof [EMAIL PROTECTED]: On Sun, 30 Apr 2006, Eric Redmond wrote

Re: How are people getting around the lack of custom scopes?

2006-04-30 Thread Kenney Westerhof
] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http

Re: maven proxy settings - security hazard

2006-04-26 Thread Kenney Westerhof
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL

Re: [m2] Xdoclet fails

2006-04-19 Thread Kenney Westerhof
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: [m2] Xdoclet fails

2006-04-19 Thread Kenney Westerhof
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e

Re: M2: Assembling modules in an ear

2006-04-19 Thread Kenney Westerhof
On Wed, 19 Apr 2006, Gunzenreiner Simon wrote: - Drop the scopecompile/scope - it's the default anyway, and not needed for compilation of the ear - the modules section is only needed for modules that need special configuration, like a war module usually gets a contextRoot - do you provide

Re: [m2] Xdoclet fails

2006-04-19 Thread Kenney Westerhof
- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge

Re: [m2] Xdoclet fails

2006-04-19 Thread Kenney Westerhof
that worked differently. Maybe the XDoclet2 plugin is something to look at? -- Kenney J-F - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com

Re: AW: AW: M2: Assembling modules in an ear

2006-04-19 Thread Kenney Westerhof
that this is not the normal way to do things.. ;) Any ideas? Thanks a lot again. No problem! -- Kenney Simon -Ursprüngliche Nachricht- Von: Kenney Westerhof [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 19. April 2006 18:18 An: Maven Users List Betreff: Re: AW: M2: Assembling

Re: Problem with eclipse plugin

2006-04-11 Thread Kenney Westerhof
. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: Deploying 3rd Party Libraries with sources

2006-04-11 Thread Kenney Westerhof
] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Deploying 3rd Party Libraries with sources

2006-04-11 Thread Kenney Westerhof
;) -- Kenney Roland On Tuesday 11 April 2006 12:25, Kenney Westerhof wrote: On Tue, 11 Apr 2006, Roland Asmann wrote: I assume you have the source jars present, and you install the files with mvn install:install-file or mvn deploy:deploy-file ? If so, you can deploy/install

Re: help whit site-deploy

2006-04-11 Thread Kenney Westerhof
/site /distributionManagement -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Ear file and classpath entry in Manifest file ...

2006-04-11 Thread Kenney Westerhof
commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: sharing artifacts without repositories???

2006-04-01 Thread Kenney Westerhof
B can use it.. My question : What if i dont want to put the built artifact of Project A in a repository and still it should be available to my project B Any maven goals to handle this scenario??? Thanks, Raja. -- Kenney Westerhof http://www.neonics.com GPG public key: http

Re: [m2] Improper build number after deploying a snapshot of maven-javadoc-plugin

2006-03-22 Thread Kenney Westerhof
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL

Re: [M2]Maven Ear Plugin did not recognize the RAR Sub Project

2006-03-22 Thread Kenney Westerhof
, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: provided dependendcy still packed in webapp

2006-03-13 Thread Kenney Westerhof
www.stephenduncanjr.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

Re: [m2] Database/SQL plugin? Generating DB from schema?

2006-02-21 Thread Kenney Westerhof
commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge

RE: How to specify external jars

2006-01-04 Thread Kenney Westerhof
://www.cognizant.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Kenney Westerhof http://www.neonics.com GPG public key: http://www.gods.nl/~forge/kenneyw.key

  1   2   3   >