Re: Install Problem on 1.1 - NoClassDefFoundError: IfAuthorizedTag

2008-01-27 Thread Jesse McConnell
what page was that? looks like its using an old tag, that class package was changed a long time ago from plexus/security to plexus/redback old reference in a jsp maybe? On Jan 24, 2008 7:26 PM, Cam [EMAIL PROTECTED] wrote: hi, i've been trying a fresh install of 1.1 on a clean system but i

Re: Install Problem on 1.1 - NoClassDefFoundError: IfAuthorizedTag

2008-01-27 Thread Cam
i think that was exactly it. must have had an old version of the jsp page in the tomcat cache or something. reinstalled everything and it's all working great now, thanks for the help. cam Jesse McConnell wrote: what page was that? looks like its using an old tag, that class package was

Re: Repeating resource collections

2008-01-27 Thread Wim Deblauwe
maybe you can use a common parent pom that defines those? regards, Wim 2008/1/25, [EMAIL PROTECTED] [EMAIL PROTECTED]: As I continue to move our Ant build to Maven artifacts, I have found myself repeating resource collections, particularly the includes and excludes criteria. In ant, such

Re: generating a project for ejb3

2008-01-27 Thread Graham Leggett
Angelo Chen wrote: is there a easy way to generate a directory structure for ejb3 project? maven-archetype-j2ee-simple archetype does not work for ejb3. thanks. In our case, the only differences our ejb3 projects have with normal jar projects is that they are of packaging ejb, and contain

Re: release:perform plugin: after release properties are changed to real values

2008-01-27 Thread Vytautas Čivilis
thank you! Tomasz Pik wrote: On Jan 26, 2008 6:46 PM, Vytautas Čivilis [EMAIL PROTECTED] wrote: Hi. If I have pom with the following, for instance: scm connectionscm:cvs:ext:[EMAIL PROTECTED]:/fold/cvs:${groupId}/${artifactId}//connection developerConnectionscm:cvs:ext:[EMAIL

How to trace which repository files are used in a build?

2008-01-27 Thread sebb
Is there a debug flag or other method which can be used to trace which files are accessed from the repository during a Maven 2 build? One could empty the local repository before starting a build, and look for the download messages, but hopefully there is an easier method...

RE: How to trace which repository files are used in a build?

2008-01-27 Thread EJ Ciramella
You can try mvn site which should give SOME of this, but other reporting plugins give more accurate info, like: http://maven.apache.org/plugins/maven-dependency-plugin/index.html - look at the list option or http://maven.apache.org/plugins/maven-project-info-reports-plugin/depend

Re: How to trace which repository files are used in a build?

2008-01-27 Thread Tom Huybrechts
The most reliable (and least readable) way is to run with the '-X' option and look at the classpath in the configuration of the compiler or surefire plugin. Tom On Jan 27, 2008 5:30 PM, EJ Ciramella [EMAIL PROTECTED] wrote: You can try mvn site which should give SOME of this, but other

RE: How to trace which repository files are used in a build?

2008-01-27 Thread Brian E. Fox
The dependency plugin also has build-classpath which will put this on a file for you, or the tree mojo in addition to the resolve one. -Original Message- From: Tom Huybrechts [mailto:[EMAIL PROTECTED] Sent: Sunday, January 27, 2008 11:32 AM To: Maven Users List Subject: Re: How to trace

Re: JavaDoc aggregate-problems

2008-01-27 Thread Roland Asmann
OK, maybe it was on the list... Was a little pissed when I wrote this this morning and didn't check the list of it. I would like to apologize for my behavior. So, after posting I checked out the sources for both the javadoc-plugin and the surefire-report-plugin and removed the 'aggregator'-tag.

please help: OutOfMemoryError with -Xmx1024M -XX:MaxPermSize=512m

2008-01-27 Thread Joerg Hohwiller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, the build of my projects site does not work anymore. I do this: export MVN_OPTS=-Xmx1024M -XX:MaxPermSize=512m mvn install -Dmaven.test.skip=true mvn -npu -fae -Pcodehaus site:stage -DstagingDirectory=${STAGE_DIR} The problem occured

Re: please help: OutOfMemoryError with -Xmx1024M -XX:MaxPermSize=512m

2008-01-27 Thread sebb
Try export MAVEN_OPTS=-Xmx1024M -XX:MaxPermSize=512m instead. As far as I can see, MVN_OPTS is not used by Maven. On 27/01/2008, Joerg Hohwiller [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, the build of my projects site does not work anymore. I do

A Hello World in ejb3

2008-01-27 Thread Angelo Chen
Hi, I'm looking for a simple sample Maven project for ejb3, I have tried this: http://www.sonatype.com/book/examples/book-j2ee.zip, everything compile, and I follow the exact steps in the maven-user-guide.pdf, but it just not working. Thanks, A.C. -- View this message in context:

Re: A Hello World in ejb3

2008-01-27 Thread Wayne Fay
It is just not working -- can you be more specific? Try adding -X to the call to Maven (eg mvn -X package) to get debugging information. If you spot a specific error in the debug log, paste it in a reply to this email. Wayne On 1/27/08, Angelo Chen [EMAIL PROTECTED] wrote: Hi, I'm looking

organizing groups of dependencies

2008-01-27 Thread Rohnny Moland
Hei, I am trying to figure out the best way to group dependencies for easier maintainance. I was reading this: http://www.mail-archive.com/[EMAIL PROTECTED]/msg61076.html Which is close to what I am looking for. Is this something that is going to be implemented in a later maven version? I also

Re: jboss data-source not included in jboss-app.xml

2008-01-27 Thread elaroche
damn it !! that's a good idea, I should've thought about that myself !!! thanks mate. Wayne Fay wrote: Sorry for the misdirection -- I'm a bit surprised that the ear plugin supports this functionality. Shows how much I've used Maven + JBoss... ;-) You may need to poke around in the code