jars in the custom ear not getting referenced at compile time

2008-10-16 Thread partha_ctc
Hi guys, please help me in getting the solution. 1) i had put many jars like struts1.2.9.jar , junti.jar etc in a lib folder. then make it as colib.ear. 2) Then try to install as mvn install:install-file –DgroupId=repackage.oracle.ebilling –DartifactId=colib

How to get the local repository directory

2008-10-16 Thread Miroslav Nachev
Hi, I am trying to get the local repository directory with localRepository parameter but the result is not the expected: [local] - file://C:\Documents and Settings\miroslav\.m2\repository The problem is that before the directory there is a prefix [local] - file:// which is the problem.

Re: How to get the local repository directory

2008-10-16 Thread Brett Porter
Try ${settings.localRepository} instead. - Brett On 16/10/2008, at 5:57 PM, Miroslav Nachev wrote: Hi, I am trying to get the local repository directory with localRepository parameter but the result is not the expected: [local] - file://C:\Documents and Settings\miroslav\.m2\repository

Re: New to Maven - need help

2008-10-16 Thread Jan K
I able to build the project successfully.I get a target folder created.But i donot find any class files created for the project.Here is my sample pom.xml file: project xmlns=http://maven.apache.org/POM/4.0.0; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

Re: New to Maven - need help

2008-10-16 Thread Wayne Fay
Based on the information you are providing, it is nearly impossible to tell you what's going on/wrong/missing/etc in your specific project. Are your Java source files in src/main/java? When you run mvn compile, what happens? Does it say BUILD SUCCESSFUL near the bottom of the output? When you

Re: Failure to create a WAR file

2008-10-16 Thread Wayne Fay
Based on what you've said, I'd guess that the artifacts you are depending on have not been installed in your local repo cache as yet. Go into the directories where your various dependencies are located and run mvn install on each one. Then go to your war project and try mvn install again.

Re: how to disable jar-with-dependencies when assembly?

2008-10-16 Thread doballve
I have similar issue as Wendy, and inherited = false did not do the trick. I use custom assembly (format=dir), no descriptorRef in configuration, and I still get jar with dependencies built. I can see logs, result jar and a lot of time spent to build it.. in my case it's even cheaper to have

Re: jars in the custom ear not getting referenced at compile time

2008-10-16 Thread Wayne Fay
Your approach will not work. The Java compiler does not know how to find compiled Java classes inside Jars inside Ears. Effectively, you cannot depend on an EAR in another project. Instead, you need to depend directly on the Struts artifacts in this project. There may be a way to make this work

Re: Help needed. JSP Pre-compilation gets stuck with maven.

2008-10-16 Thread Wayne Fay
Try mvn -X install to see more debugging information that may help figure out what is going on. Wayne On Wed, Oct 15, 2008 at 10:20 PM, Bhargava [EMAIL PROTECTED] wrote: Hi, I am using maven-2.0.8 with java-1.5.0_15 and maven jspc plugin of tomcat5. My pom.xml entry for jspc looks like

Re: jars in the custom ear not getting referenced at compile time

2008-10-16 Thread partha_ctc
Hi, if i have lots of jars and rather than mentioning eah arifacts there should be one approach to bundle many jar in some jar or war and getting the reference in the dependancy tag. Wayne Fay wrote: Your approach will not work. The Java compiler does not know how to find compiled

Re: jars in the custom ear not getting referenced at compile time

2008-10-16 Thread partha_ctc
Hi, if i have lots of jars and rather than mentioning eah arifacts there should be one approach to bundle many jar in some jar or war and getting the reference in the dependancy tag. Wayne Fay wrote: Your approach will not work. The Java compiler does not know how to find compiled

Re: jars in the custom ear not getting referenced at compile time

2008-10-16 Thread partha_ctc
Hi, if i have lots of jars and rather than mentioning eah arifacts there should be one approach to bundle many jar in some jar or war and getting the reference in the dependancy tag. Wayne Fay wrote: Your approach will not work. The Java compiler does not know how to find compiled

Re: New to Maven - need help

2008-10-16 Thread Jan K
Hi Wayne, Sorry to miss this information.I have a folder called classes in the target folder.It has the entire java files used in my project.I should instead have class files right?Please let me know. Wayne Fay wrote: Based on the information you are providing, it is nearly impossible to

Running compiled tests against a fat-jar

2008-10-16 Thread Perron . Manfo
Hey, I am building a fat-jar bundling all dependencies using an Maven assembly plugin. To ensure afterwards that this jar is tested I would like to run all its tests against the jar file. I played around with the surefire:plugin and additionalClasspathElements plus testClassDirectory -

Re: trunk/tags/branches: root vs. project level

2008-10-16 Thread Andy Law
hilco wrote: Nonsense, you can create any kind of combination using svn:externals. If you're happy to live with the pain of svn:externals then that's something that's going to work for you. Two paragraphs of warnings at the end of the snv book page describing them is enough to scare me

Re: New to Maven - need help

2008-10-16 Thread Jan K
First time i created a project using mvn archetype:create -DgroupId=com.careertales -DartifactId=careertales -DarchetypeArtifactId=maven-archetype-webapp. I got a folder structure as : src/main -- resources -- webapp In resources folder,i placed a simple java file(Test.java) which just

RE: Want to exclude extra jars from war.

2008-10-16 Thread Dhruva Reddy
You don't say which container you're using. We just had this problem with WebLogic (the EAR file that we deploy was very large, leading to deployment times of 30+ minutes). Our solution to this was to place as many of the JARs as possible in the system classpath (a classpath that the

DependencyManagement and range constraints

2008-10-16 Thread Kees van Dieren
Hi all, We have a problem with DependencyManagement and range constraints; the version in DependencyManagement seems to override all ranges defined elsewhere (as if they have never been there). What we need, is that range constraints still apply to guarantee compatibility between the

Maven version for MNG-624 issue

2008-10-16 Thread Shakun Gupta
Hi, Can you please let me know in which version of maven is MNG-624 issue fixed? I have tried 2.0.9 and 2.1.0-M1. http://jira.codehaus.org/browse/MNG-624 Regards, Shakun - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: New to Maven - need help

2008-10-16 Thread Thomas Lutz
Jan K schrieb: First time i created a project using mvn archetype:create -DgroupId=com.careertales -DartifactId=careertales -DarchetypeArtifactId=maven-archetype-webapp. I got a folder structure as : src/main -- resources -- webapp In resources folder,i placed a simple java file(Test.java)

Ant Expressions to Maven Expressions Mapping

2008-10-16 Thread Borut Bolčina
Hi, I was looking for a maven plugin that would adjust end-of-line characters on predefined set of files. I found this ant task [1] which suites my need, but then at [2] I am reading: Some Ant expressions have their respective counterparts in Maven. Thus, one can simply invoke the corresponding

Re: Maven version for MNG-624 issue

2008-10-16 Thread Geoffrey Wiseman
On Thu, Oct 16, 2008 at 7:41 AM, Shakun Gupta [EMAIL PROTECTED]wrote: Hi, Can you please let me know in which version of maven is MNG-624 issue fixed? I have tried 2.0.9 and 2.1.0-M1. http://jira.codehaus.org/browse/MNG-624 The fix version on the issue is 3.0. - Geoffrey -- Geoffrey

Re: Maven version for MNG-624 issue

2008-10-16 Thread Geoffrey Wiseman
On Thu, Oct 16, 2008 at 8:17 AM, Geoffrey Wiseman [EMAIL PROTECTED] wrote: On Thu, Oct 16, 2008 at 7:41 AM, Shakun Gupta [EMAIL PROTECTED]wrote: Hi, Can you please let me know in which version of maven is MNG-624 issue fixed? I have tried 2.0.9 and 2.1.0-M1.

Re: Assembly plugin: You must set at least one file.

2008-10-16 Thread johoso
I am sorry that I am opening up and old thread and that I am also hijacking it. But this guy had the exact same problem as I do, but never posted his error trace. So I will do that instead. Is there anyone who can help out, please do! [INFO] Scanning for projects... [INFO]

Re: Assembly plugin: You must set at least one file.

2008-10-16 Thread Ricardo Nascimento
Hi, Instead of use moduleSets try to use fileSets if possible, something like this: fileSets fileSet directorysrc/main/something/directory outputDirectory/outputDirectory includes include**/*.ext/include /includes

Re: New to Maven - need help

2008-10-16 Thread Jan K
Is there any possiblity of adding our own dependencies in maven? Thomas Lutz wrote: Jan K schrieb: First time i created a project using mvn archetype:create -DgroupId=com.careertales -DartifactId=careertales -DarchetypeArtifactId=maven-archetype-webapp. I got a folder structure as :

Re: Assembly plugin: You must set at least one file.

2008-10-16 Thread johoso
It seems like I made a very basic mistake. The directorysrc/main/something/directory was simpy incorrect and the assemby-plugin could not find anything there. My bad... /Johannes /Johannes Ricardo Nascimento wrote: Hi, Instead of use moduleSets try to use fileSets if possible, something

RE: Want to exclude extra jars from war.

2008-10-16 Thread Nitin B
Thanks all for the help. I am making use of WebLogic10 for deploying my web service (created with Apache CXF). I don't want to include anything in classpath. I want to make ear file which can be deployed to any weblogic server without changing server configuration. Thanks, Nitin B -- View

Re: Failure to create a WAR file

2008-10-16 Thread Wendy Smoak
On Wed, Oct 15, 2008 at 10:14 PM, svenson [EMAIL PROTECTED] wrote: I use mvn install. I just mean that when I use packagingwar/packaging in my POM file my classes for some uncertain reason don't resolve classes from other libraries though I use dependency.../dependency. Notice that we're

MNG-3092, patch applied but still SNAPSHOTS?!?

2008-10-16 Thread De Smet Ringo
Hello, To circumvent bug MNG-3092 (1), I applied the patch file given in the JIRA issue to all possible versions of org.apache.maven:maven-artifact. This resulted in patched versions 2.0, [2.0.2-2.0.9] in my local repository. (1) http://jira.codehaus.org/browse/MNG-3092 After doing this, I

How to exclude perticular class from dependent jar.

2008-10-16 Thread Nitin B
Hi, I want to exclude a class org.apache.cxf.js.rhino.DOMMessageProvider from cxf-2.1.2.jar. cxf-2.1.2.jar is my one of the depenendency in POM. dependencies . . dependency groupIdorg.apache.geronimo.configs/groupId artifactIdcxf/artifactId version2.1.2/version /dependency . . .

Re: New to Maven - need help

2008-10-16 Thread Jan K
I went through the site given by arnaud.It is really useful for as i am new maven. It get the following message in the console: [INFO] OldArchetype created in dir: /home/jano/CVS/margadarsi/ct3/src/careertales [INFO] [INFO]

Re: New to Maven - need help

2008-10-16 Thread Martin Höller
On Thursday 16 October 2008 Jan K wrote: I went through the site given by arnaud.It is really useful for as i am new maven. Through the whole book? Really? It get the following message in the console: [INFO] OldArchetype created in dir: /home/jano/CVS/margadarsi/ct3/src/careertales [INFO]

How to create my own packaging type and my own build life cycle?

2008-10-16 Thread Martijn Morriën
Dear Maven users, I have 2 questions: 1) Can I query the archived mailinglists? I can browse the archives (http://mail-archives.apache.org/mod_mbox/maven-users/), but cannot seem to find a way to search through them. 2) I would like to create my own packaging type, with my own life cycle. How

RE: 2.0.10 release date?

2008-10-16 Thread PaulG
Any news on a release date for 2.0.10? Brian E. Fox wrote: Sorry, I assumed you were looking for the conclusion to the RCs previously sent out as 2.0.10. Yes there will be a release of 2.0.10 with only bug fixes, but it hasn't started the process yet so it's still several weeks away.

Re: How to create my own packaging type and my own build life cycle?

2008-10-16 Thread sean chen(陈思淼)
I've ask the same question befere, here is the answer from Simone, and that give me lots of help, I hope it can help you too: Hi 陈思淼, I'm not a Maven developer but I did a custom packaging. You have to follow these steps : - Create a plugin (mojo) project - In this plugin project,

Re: How to create my own packaging type and my own build life cycle?

2008-10-16 Thread Wendy Smoak
On Thu, Oct 16, 2008 at 7:56 AM, Martijn Morriën [EMAIL PROTECTED] wrote: Dear Maven users, I have 2 questions: 1) Can I query the archived mailinglists? I can browse the archives (http://mail-archives.apache.org/mod_mbox/maven-users/), but cannot seem to find a way to search through them.

What's the meaning of addedToClasspath and includesDependencies when make own packaging type?

2008-10-16 Thread sean chen(陈思淼)
component role org.apache.maven.artifact.handler.ArtifactHandler /role role-hintmagma/role-hint implementation org.apache.maven.artifact.handler.DefaultArtifactHandler /implementation configuration

Re: New to Maven - need help

2008-10-16 Thread sean chen(陈思淼)
the maven definitive book is very useful for the beginner of maven ,maybe you should read it through. 2008/10/16 Jan K [EMAIL PROTECTED] Is there any possiblity of adding our own dependencies in maven? Thomas Lutz wrote: Jan K schrieb: First time i created a project using mvn

Re: jars in the custom ear not getting referenced at compile time

2008-10-16 Thread Wayne Fay
There are ways to do this. Bundling everything in an EAR and expecting it to work is not one of them. One way to do this would be to create a separate project with packaging pom and then specify all the dependencies there (individually). Then in your ear project, add a dependency on that project

Re: Want to exclude extra jars from war.

2008-10-16 Thread Wayne Fay
I don't want to include anything in classpath. I want to make ear file which can be deployed to any weblogic server without changing server configuration. In that case, excluding dependencies which were brought in transitively may not be the world's best idea. Surely, many of those artifacts

Re: How to exclude perticular class from dependent jar.

2008-10-16 Thread Wayne Fay
I want to exclude a class org.apache.cxf.js.rhino.DOMMessageProvider from cxf-2.1.2.jar. cxf-2.1.2.jar is my one of the depenendency in POM. This is not trivial, unless you simply repackage your own version of this jar with that file removed and then add it back to the Maven repo. But I

Recommended project structure.

2008-10-16 Thread David Ojeda
Hello all, I have never worked with maven before, but I have read about it and seems interesting. I have tested it with wicket, gwt, j2ee and webapp archetypes and I found that maven could be a huge time saver for the projects in the company I am working for. I have a particular project

Re: Running compiled tests against a fat-jar

2008-10-16 Thread Wayne Fay
What build server? With Hudson, you could just set another build step to run ant's junit task immediately after Maven ran. Wayne On Thu, Oct 16, 2008 at 2:37 AM, [EMAIL PROTECTED] wrote: Hey, I am building a fat-jar bundling all dependencies using an Maven assembly plugin. To ensure

Howto Install Plugin?

2008-10-16 Thread Some user
Hi, I am trying to manually install a maven-plugin (http://code.google.com/p/maven-timestamp-plugin/). Can anyone help me? Just wasted over an hour reading the docs and googling, but I must be missing something obvious. (And of course, the maven documentation sucks.) - --

Re: Howto Install Plugin?

2008-10-16 Thread Wayne Fay
What have you tried? How do you know it didn't work? I don't know about that specific plugin, but generally, you should be able to grab the source and then run mvn install to put it into your repo. Wayne On Thu, Oct 16, 2008 at 9:45 AM, Some user [EMAIL PROTECTED] wrote: Hi, I am trying to

Re: Recommended project structure.

2008-10-16 Thread Raphaël Piéroni
Hi David, I think you nearly get the point. Your idea is fine of what to do. But i would have adde a pom.xml file in 'somedir' of packaging type 'pom' in which i would have defined 3 modules. And in each of the 3 modules' poms, i would have refeerenced the somedir's pom as parent. For a good

Ear packaging problem

2008-10-16 Thread Saulo Nardin Rocha
Hello people. i'm having a problem with a EAR Packaging. my pom is configured to put all libs at ear /lib dir, and to remove all of then from war WEB-INF/lib dir. Now I'm trying to put only one lib at WEB-INF/lib, because this a solution to my jboss UCL problem, and I cant do it. follow my pom

Release plugin : Update RELEASE versions to actual release version during prepare

2008-10-16 Thread Hayes, Peter
We are considering trying to use the special RELEASE version in our pom files. I think in order to generate reproducible builds though the RELEASE version needs to be locked down to the actual latest release version as specified in the metadata. Once the release has been performed, the version

Activating proxy from command line

2008-10-16 Thread Johan Lindquist
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I have looked around but fail to find any docs on how to activate a certain proxy (configured in my settings.xml) from the command line. The docs for settings.xml hints that this could (should?) be possible. Anyone used this or know if it is

Re: Site deployment to sourceforge.net broken

2008-10-16 Thread Thiago Moreira (timba)
I found the following work around to this problem: scp -r target/site/* thiagolm,[EMAIL PROTECTED]:/home/groups/f/fl/floggy/htdocs Until the problem isn't be solved I will update the site using two steps: mvn clean site and then using the scp command. Thiago Moreira On Tue, Oct 7, 2008

Packaging an application that can be run

2008-10-16 Thread alexworden
Hi, I have a standalone application that needs to be run on a production machine. I'm using the maven assembly plugin to create a zip file that contains all of the dependencies. So far so good, however, I need a script that can be invoked on the production machine (from a cron job). I can

Re: can't rev the version of multi-module project

2008-10-16 Thread Ryan Heaton
Well, my show had to go on. I had to resort to revving, building and deploying each module one-by-one. Ouch! If anyone can bring relief to my suffering, I would be greatly appreciative. -Ryan On Wed, Oct 15, 2008 at 12:46 PM, Ryan Heaton [EMAIL PROTECTED] wrote: Hi. I just converted my

Tests running twice with Assembly plugin?

2008-10-16 Thread David C. Hicks
I added a maven-assembly-plugin section to our build and bound it to the package phase. Now, if I run goals clean install the tests all get run twice. I don't see any reason for it, though. Can someone point me in the direction of a good solution? Thanks, Dave

Re: can't rev the version of multi-module project

2008-10-16 Thread Stephen Connolly
do mvn -N install in the parent folder first and then mvn install 2008/10/16 Ryan Heaton [EMAIL PROTECTED]: Well, my show had to go on. I had to resort to revving, building and deploying each module one-by-one. Ouch! If anyone can bring relief to my suffering, I would be greatly

Re: Release plugin : Update RELEASE versions to actual release version during prepare

2008-10-16 Thread Michael McCallum
the release plugin generates a resolve pom that it commits to the tag... that has the actual version... there are caveats to its use like: it does not preserve exclusions and removes ranges but other than that it should be ok On Fri, 17 Oct 2008 07:22:25 Hayes, Peter wrote: We are considering

Re: can't rev the version of multi-module project

2008-10-16 Thread Ryan Heaton
Thanks, that helps, but the build still fails on the install with the same error because child3 still depends on child1 which isn't installed yet. However, this does somewhat simplify my procedure... New procedure: 1. mvn release:prepare (build will fail with message described below, but the

Re: Packaging an application that can be run

2008-10-16 Thread supareno
alexworden , did you add this to your manifest: Class-Path: foo.jar bar.jar and is your folder looks like this: appfolder |_ myExecJar.jar |_ foo.jar |_ bar.jar ?? check out this http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html it may help you Hi, I have a

Re: can't rev the version of multi-module project

2008-10-16 Thread Johan Lindquist
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I have a similar setup, only I declare the dependency versions in the parent pom (using dependency management). Of course, not tried to use a property there (define the versions explicitly), but maven happily updates the dependency management

Re: can't rev the version of multi-module project

2008-10-16 Thread Ryan Heaton
I actually tried that (declaring the dependency versions in the pom), but it still doesn't work. Do your modules have interdependencies? Are you using Maven 2.0.9? -Ryan On Thu, Oct 16, 2008 at 2:16 PM, Johan Lindquist [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1

Re: Packaging an application that can be run

2008-10-16 Thread Dan Tran
lookup appassembler plugin On Thu, Oct 16, 2008 at 1:13 PM, supareno [EMAIL PROTECTED] wrote: alexworden , did you add this to your manifest: Class-Path: foo.jar bar.jar and is your folder looks like this: appfolder |_ myExecJar.jar |_ foo.jar |_ bar.jar ?? check out this

Re: Recommended project structure.

2008-10-16 Thread Trevor Harmon
On Oct 16, 2008, at 12:59 PM, Raphaël Piéroni wrote: For a good idea of a multi module project, you could refer to platina: http://platina.svn.sf.net/svnroot/platina/platina-archetype/ Doesn't seem to be anything there. Trevor

Re: Recommended project structure.

2008-10-16 Thread Raphaël Piéroni
follow the trunk and there will be a multimodule project Regards, Raphaël 2008/10/16 Trevor Harmon [EMAIL PROTECTED]: On Oct 16, 2008, at 12:59 PM, Raphaël Piéroni wrote: For a good idea of a multi module project, you could refer to platina:

Re: Recommended project structure.

2008-10-16 Thread David C. Hicks
I didn't see anything under trunk, either. Raphaël Piéroni wrote: follow the trunk and there will be a multimodule project Regards, Raphaël 2008/10/16 Trevor Harmon [EMAIL PROTECTED]: On Oct 16, 2008, at 12:59 PM, Raphaël Piéroni wrote: For a good idea of a multi module project,

Re: how to disable jar-with-dependencies when assembly?

2008-10-16 Thread doballve
Please ignore. Another profile was pulling jar-with-dependencies. doballve wrote: I have similar issue as Wendy, and inherited = false did not do the trick. I use custom assembly (format=dir), no descriptorRef in configuration, and I still get jar with dependencies built. I can see logs,

Re: Recommended project structure.

2008-10-16 Thread David C. Hicks
I take that back. The second time around it showed up. David C. Hicks wrote: I didn't see anything under trunk, either. Raphaël Piéroni wrote: follow the trunk and there will be a multimodule project Regards, Raphaël 2008/10/16 Trevor Harmon [EMAIL PROTECTED]: On Oct 16, 2008, at

Re: can't rev the version of multi-module project

2008-10-16 Thread Michael McCallum
I would recommend not using modules to do the release... just release each project independently... if you find version management becomes an overhead then use ranges to make it a bit simpler... On Fri, 17 Oct 2008 09:16:03 Johan Lindquist wrote: Hi, I have a similar setup, only I declare

Re: Recommended project structure.

2008-10-16 Thread Michael McCallum
why do you have snapshot versions for parents? On Fri, 17 Oct 2008 09:42:10 Raphaël Piéroni wrote: follow the trunk and there will be a multimodule project Regards, Raphaël 2008/10/16 Trevor Harmon [EMAIL PROTECTED]: On Oct 16, 2008, at 12:59 PM, Raphaël Piéroni wrote: For a good idea

Re: can't rev the version of multi-module project

2008-10-16 Thread Kalle Korhonen
Why don't you just run install during release:prepare? http://maven.apache.org/plugins/maven-release-plugin/examples/run-goals-before-commit.html. By default, install is not run (because it's not really released yet; but typically causes issues with multi-module builds that use dependency plugin

Re: Packaging an application that can be run

2008-10-16 Thread tadamski
Alex, I too went through this problem and hopefully I can be of some assistance to you. It seems you are close to a solution, but I would like to offer a different approach from the executable jar. Within your assembly descriptor, you can output your dependent jars into a desired folder

problem with entity bean

2008-10-16 Thread deb1234
I have two enetity beans and I sometimes get an error IllegalArgumentException : [EMAIL PROTECTED] Entity bean not found. Sometimes it works if I do a clean install from the command line. My persistence.xml file is located in src/main/resource/META-INF , so the classpath should not be an issue.

Re: Packaging an application that can be run

2008-10-16 Thread alexworden
Thanks Tommy - I was searching all over for that java property. I thought you had to specify each and every jar file on the classpath. For the record, I found a workaround. I was having Spring pick up my properties files from the classpath via : bean id=myPropsConfig

Re: Packaging an application that can be run

2008-10-16 Thread alexworden
Hi supareno, I'm trying not to have to manipulate the manifest by hand. It is generated by the maven-jar-plugin and contains all the dependencies I need. I also need to be able to speficy where the properties files are located for each target platform. I posted my own solution to this. Thanks

Re: 2.0.10 release date?

2008-10-16 Thread Brett Porter
I picked this up yesterday. I'm going to look at one more fix for toolchains, then start the (likely much shorter) RC process. - Brett On 17/10/2008, at 1:57 AM, PaulG wrote: Any news on a release date for 2.0.10? Brian E. Fox wrote: Sorry, I assumed you were looking for the conclusion

Re: 2.0.10 release date?

2008-10-16 Thread Dan Tran
is it about the same with 2.1-M1? -Dan On Thu, Oct 16, 2008 at 5:57 PM, Brett Porter [EMAIL PROTECTED] wrote: I picked this up yesterday. I'm going to look at one more fix for toolchains, then start the (likely much shorter) RC process. - Brett On 17/10/2008, at 1:57 AM, PaulG wrote:

Re: 2.0.10 release date?

2008-10-16 Thread Brett Porter
You can see in JIRA which changes are applied. It is a subset of the 2.1.0-M1 changes, for those that are not ready to take that step yet. - Brett On 17/10/2008, at 12:03 PM, Dan Tran wrote: is it about the same with 2.1-M1? -Dan On Thu, Oct 16, 2008 at 5:57 PM, Brett Porter [EMAIL

Re: Maven version for MNG-624 issue

2008-10-16 Thread Brett Porter
Yes, you'll need to read the comments that show where the prototype occurred, but it is not part of a current release. - Brett On 16/10/2008, at 11:18 PM, Geoffrey Wiseman wrote: On Thu, Oct 16, 2008 at 8:17 AM, Geoffrey Wiseman [EMAIL PROTECTED] wrote: On Thu, Oct 16, 2008 at 7:41 AM,

Re: What's the meaning of addedToClasspath and includesDependencies when make own packaging type?

2008-10-16 Thread Brett Porter
When used as a dependency type, something like the compiler plugin will add it to the classpath. If it's not meant to be used in that way (eg, WAR), it won't be. - Brett On 17/10/2008, at 3:02 AM, sean chen(陈思淼) wrote: component role

Re: can't rev the version of multi-module project

2008-10-16 Thread Johan Lindquist
That rings a bell - and that would explain why it works for me - my root pom (not the project root pom - declared a long while back) defines this for the release plugin. Apologies for the misleading post ... Cheers, Johan Kalle Korhonen wrote: Why don't you just run install during