Does Continuum 1.1-beta-3 alter permissions on checked out files?

2007-10-22 Thread jmartin
I have a Continuum project tied to a CVS repository with a build target that uses a shell script which is checked out from that repository. In Continuum 1.0.3, this script executes without error, however in 1.1-beta-3, the same script fails with a Permission denied error from /bin/sh. After

Re: Artifact [...] is not a dependency of the project

2007-10-22 Thread Tim Kettler
Hi, you have to declare the ejb-jar and war as normal dependencies in the dependencies section of the ear's pom. The module section in the ear-plugin configuration is only used for customizing some details of a module (like you have done with the context root). So your pom should look similar to

Maven training and talks in Hong Kong at OSSummit Asia, 26-30 Nov 2007

2007-10-22 Thread Brett Porter
The first OSSummit Asia is just around the corner, being held in Hong Kong, from 26-30 November. You can register for the conference and trainings now, or find out more information at http://www.ossummit.com/ Maven is again well represented with the following training and presentations:

Continuum training and talks in Hong Kong at OSSummit Asia, 26-30 Nov 2007

2007-10-22 Thread Brett Porter
(posting here for the benefit of those not on the Maven lists) The first OSSummit Asia is just around the corner, being held in Hong Kong, from 26-30 November. You can register for the conference and trainings now, or find out more information at http://www.ossummit.com/ Continuum is again

Archiva training and talks in Hong Kong at OSSummit Asia, 26-30 Nov 2007

2007-10-22 Thread Brett Porter
(posting here for the benefit of those not on the Maven lists) The first OSSummit Asia is just around the corner, being held in Hong Kong, from 26-30 November. You can register for the conference and trainings now, or find out more information at http://www.ossummit.com/ Archiva is again

Re: Ant tasks 2.0.7 with snapshot dependencies

2007-10-22 Thread Hervé BOUTEMY
Hi Mark, There have been some issues fixed with SNAPSHOT handling during last weeks: can you check if you still have a problem with latest tasks snapshot? You can find it in http://maven.zones.apache.org/continuum/workingCopy.action?projectId=524userDirectory=target Then, if the problem is

classpath, tests, resources

2007-10-22 Thread Ondřej Černoš
Hi, I am experiencing a problem with testing and resources. Basically, it seems the production and not the test resources are used when running tests. I have two log4j.properties files, one defines appender as file appender in src/main/resources:

Re: classpath, tests, resources

2007-10-22 Thread Adam Hardy
Hi Ondrej looks like mvn is not only picking up the production log4j.properties file but it's also probably not substituting ${catalina.home} Check in your target/classes directory for log4j.properties and see if it's substituted it. Secondly, log4j uses the first log4j.properties it comes

Re: classpath, tests, resources

2007-10-22 Thread Ondřej Černoš
Hi Adam, thanks for quick answer. The target/classes directory contains the production log4j.properties file. I always thought maven uses the target/test-classes directory as the classpath entry during the tests - it contains the correct version of the log4j.properties file, but it seems the

Re: classpath, tests, resources

2007-10-22 Thread Adam Hardy
You're right, I overlooked that, but your output didn't show the source paths at all for mvn - just for eclipse. Ondřej Černoš on 22/10/07 13:25, wrote: thanks for quick answer. The target/classes directory contains the production log4j.properties file. I always thought maven uses the

reading pom.version from a file

2007-10-22 Thread baumar
Hi, What would be the right way to read the version number from a file? We decided that not all users (who maybe don't know maven very well) should check out the delicate pom file . We have a file like version.properties containing tavx.current.version=1.2.3a and defined in the pom project

jsunit integration

2007-10-22 Thread Insitu
Hello, I am working on integrating jsunit (http://www.jsunit.net) into maven. I would like to share some thoughts and request some advices avout the best way to do that integration. Right now, I have a sample (maven) project that executes jsunit tests from maven and generates reports. What I did

Downloading dependency sources

2007-10-22 Thread Paul Gier
Hi Everyone, Is there a way to tell maven to download source jars by default? I didn't see anything in the pom or settings model to do this. I know I can download sources using the eclipse plugin or the dependency plugin, but I would like to tell maven to always download source jars when

Re: jsunit integration

2007-10-22 Thread nicolas de loof
FYI I've started a javascript plugin project as part of maven Mojo. It allready support running jsunit tests : http://svn.codehaus.org/mojo/trunk/sandbox/javascript-maven-tools You can look at javascript-maven-plugin JsUnitMojo, that runs a customized TestCase with a shared jsUnit server to

Maven 2 bug @ throw new

2007-10-22 Thread Mirko Adari
We have two child modules where first one is a dependency of first one. We are getting compilation error . cannot find symbol when compiling code in second module which relates to AppException in first module. The bug is that this line: throw new AppException(cannot find PaperStruct for id: +

Maven 2 bug @ throw new

2007-10-22 Thread Mirko Adari
We have two child modules where first one is a dependency of first one. We are getting compilation error . cannot find symbol when compiling code in second module which relates to AppException in first module. The bug is that this line: throw new AppException(cannot find PaperStruct for id:

Re: jsunit integration

2007-10-22 Thread Harlan Iverson
The recurring issue seems to be getting JSUnit dependencies from Maven. Is there a dialog open with the JSUnit team about this? I've made an attempt but heard nothing: http://tech.groups.yahoo.com/group/jsunit/message/954 In my opinion, the ideal solution would be to get JSUnit building with a

Re: jsunit integration

2007-10-22 Thread Insitu
nicolas de loof [EMAIL PROTECTED] writes: FYI I've started a javascript plugin project as part of maven Mojo. It allready support running jsunit tests : http://svn.codehaus.org/mojo/trunk/sandbox/javascript-maven-tools Ah ah, that's good. I was a bit lost with all those javascript plugins

Diferent build definitions with project group build all

2007-10-22 Thread Raúl Arabaolaza Barquín
Hi: We have several maven 2 projects without modules that i would like to run secuentally in the correct dependency order, if i create a project group for them and use the build all feature continumm resolves the order and invokes the default build definition for every project secuentially,

Re: Downloading dependency sources

2007-10-22 Thread Nicole Lacoste
You can add classifiersources/classifier to the dependency. If you need the classes jar too, then you should have the dependency twice in your dependency list. Nicole On 10/22/07, Paul Gier [EMAIL PROTECTED] wrote: Hi Everyone, Is there a way to tell maven to download source jars by

problem with version ranges

2007-10-22 Thread aldana
hi, i am working with version ranges, which is making problems. if i mark a version range like version[1.0,)/version and there is only 2.0 and no 1.0 version in my local repository, maven gives me an error that it cannot find range [1.0,). if i download 1.0 version it goes fine. i would expect

Re: Java doc generation

2007-10-22 Thread Jerome Lacoste
On 10/20/07, Vincent Siveton [EMAIL PROTECTED] wrote: Hi, The problems should be fixed in svn. Could you try again with a SNAPSHOT version? Vincent, did you release a new snapshot after making those changes ? The last since to be from the 11th of Octover:

Re: jsunit integration

2007-10-22 Thread nicolas de loof
I also got no reply to my request. jsunit (2.1) depends on jetty 4.2. I've asked the jetty guys to upload the requierd jars to there maven repo (will be sync to central). I'll ask to upload the jsunit artifacts as far as all dependencies are available. 2007/10/22, Harlan Iverson [EMAIL

Re: Java doc generation

2007-10-22 Thread Vincent Siveton
Hi Jerome, Done right now. Cheers, Vincent 2007/10/22, Jerome Lacoste [EMAIL PROTECTED]: On 10/20/07, Vincent Siveton [EMAIL PROTECTED] wrote: Hi, The problems should be fixed in svn. Could you try again with a SNAPSHOT version? Vincent, did you release a new snapshot after making

Re: Internal (company) repository layout best practices

2007-10-22 Thread aldana
we are not splitting repositories for releases and snapshots. in our case we are modularizing our bigger application to single maven artifacts, so when developing for a new release, changes (fixes, features) are often added often to more than one project. as soon there is a change we switch from

stuck state when downloading snapshots

2007-10-22 Thread aldana
sometimes i am having problems with downloading snapshots. for instance when trying to download dependencies from an internal repository to local one the folder gets created like xxx/bla/1.0-SNAPSHOT but inside this folder i only see metadata.xml files. maven tells me a BUILD ERROR and says that

RE: Downloading dependency sources

2007-10-22 Thread Siegmann Daniel, NY
Is there a way to tell maven to download source jars by default? I didn't see anything in the pom or settings model to do this. I know I can download sources using the eclipse plugin or the dependency plugin, but I would like to tell maven to always download source jars when building a

Re: Diferent build definitions with project group build all

2007-10-22 Thread Emmanuel Venisse
Raúl Arabaolaza Barquín a écrit : Hi: We have several maven 2 projects without modules that i would like to run secuentally in the correct dependency order, if i create a project group for them and use the build all feature continumm resolves the order and invokes the default build

Re: Site Plugin 2.0-beta-6-SNAPSHOT .vm filtering fails now

2007-10-22 Thread Dennis Lundberg
This might be because of the fix for http://jira.codehaus.org/browse/DOXIA-161 Steven Coco wrote: Hi. I am having many troubles with the site plugin. One new one is in filtering. The last snapshot version of 2.0-beta-6 allowed naming the index page as index.xml.vm and this enabled filtering

Re: Site Plugin 2.0-beta-6-SNAPSHOT .vm filtering fails now

2007-10-22 Thread Dennis Lundberg
I have now confirmed that this is the case. The fix for DOXIA-161 has been removed from svn and a new SNAPSHOT of doxia has been deployed. Please test that this solves your problem. Dennis Lundberg wrote: This might be because of the fix for http://jira.codehaus.org/browse/DOXIA-161 Steven

Re: Site Plugin 2.0-beta-6-SNAPSHOT .vm filtering fails now

2007-10-22 Thread Steven Coco
That fixed it: mvn -U -up clean site Back to the usual. Thanks. On Tue, 2007-10-23 at 00:03 +0200, Dennis Lundberg wrote: I have now confirmed that this is the case. The fix for DOXIA-161 has been removed from svn and a new SNAPSHOT of doxia has been deployed. Please test that this

Re: reading pom.version from a file

2007-10-22 Thread Michael McCallum
there is no right way to read the version from a file.. the pom is the file that contains the version... stop thinking like an ant script and start thinking like an OO programmer BTW thats not meant to be critical or offensive just to catch your attention and make you think... On Tuesday 23