Re: Archiva on Tomcat 5.5.20 on a VPS

2007-03-10 Thread Wendy Smoak
On 3/9/07, Brian Sam-Bodden [EMAIL PROTECTED] wrote: Followed the instructions at http://maven.apache.org/archiva/guides/ getting-started/index.html I think the instructions on the wiki are more complete: http://docs.codehaus.org/display/MAVENUSER/Archiva+on+Tomcat -- Wendy

RE: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Phill Moran
I am clearly missing something. I get an error on mvn scm:bootstrap (although the code is there) [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'scm'. [INFO] [INFO] Building Maven

Archiva on Tomcat 5.5.20 on a VPS

2007-03-10 Thread Brian Sam-Bodden
Followed the instructions at http://maven.apache.org/archiva/guides/ getting-started/index.html I get a 500 error showing: ===

Archiva on Tomcat Problems

2007-03-10 Thread Brian Sam-Bodden
Followed the instructions at http://maven.apache.org/archiva/guides/ getting-started/index.html I get a 500 error showing: ===

Re: Code coverage with AspectJ?

2007-03-10 Thread Vincent Massol
On Mar 9, 2007, at 11:58 PM, Kaare Nilsen wrote: On 09/03/07, Vincent Massol [EMAIL PROTECTED] wrote: On Mar 9, 2007, at 2:16 PM, Steve Shucker wrote: I don't think AspectJ and Clover are compatible. Hmmm they might be if you run them in the right order. Run Clover first on sources and

Re: Code coverage with AspectJ?

2007-03-10 Thread Kaare Nilsen
AFAIK this is still valid : http://www.cenqua.com/forums/thread.jspa?messageID=13711#13711 On 10/03/07, Vincent Massol [EMAIL PROTECTED] wrote: On Mar 9, 2007, at 11:58 PM, Kaare Nilsen wrote: On 09/03/07, Vincent Massol [EMAIL PROTECTED] wrote: On Mar 9, 2007, at 2:16 PM, Steve Shucker

Re: Code coverage with AspectJ?

2007-03-10 Thread Vincent Massol
On Mar 10, 2007, at 10:44 AM, Kaare Nilsen wrote: AFAIK this is still valid : http://www.cenqua.com/forums/thread.jspa?messageID=13711#13711 But this not what I said... I explicitely mentioned that you have to run them in the right order... See my message below :) -Vincent On

Re: Felix build fails using Maven 2.0.5

2007-03-10 Thread Andrew Williams
Am I right in guessing that your parent pom refers to the felix maven- bundle-plugin? Andy On 8 Mar 2007, at 06:30, Tim Moloney wrote: Any of the following commands fail with the error message below using Maven 2.0.5 and an empty local repository. Maven 2.0.4 works fine. ant ant install

Re: Felix build fails using Maven 2.0.5

2007-03-10 Thread Tim Moloney
Yes, the parent pom (the one executed by the ant wrapper) is a multi-module pom and one of the modules to build is maven-bundle-plugin. This is why I'm confused with the error message. maven-bundle-plugin doesn't exist since it hasn't been built yet by this execution of maven. Tim Andrew

Re: Felix build fails using Maven 2.0.5

2007-03-10 Thread Andrew Williams
Sorry, what I meant is that I assume it is using the plugin which is still to be built... Is that not the case? Andy On 10 Mar 2007, at 11:34, Tim Moloney wrote: Yes, the parent pom (the one executed by the ant wrapper) is a multi-module pom and one of the modules to build is maven-bundle-

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
why do you need to do scm:checkout at validate phase? is n't source checkedout by scm:bootstrap already validated? take it out and try again -D On 3/9/07, Phill Moran [EMAIL PROTECTED] wrote: I am clearly missing something. I get an error on mvn scm:bootstrap (although the code is there)

Re: [Maven2] xmlbeans-maven-plugin Issue -- StAX transitive dependencies

2007-03-10 Thread Jim Bethancourt
Hi Brad, I had run into the same issue that you described and added multiple dependencies and then StAX 1.2.0 to the dependency list and it the XMLBeans plugin worked for me as well. Unfortunately I am only slightly familiar with the nearness algorithm, so unfortunately I can't help you there.

Re: [m2] Preventing transitive snapshot downloading

2007-03-10 Thread Mikis
Thanks, the global mirrorOf*/mirrorOf is exactly the bullet-proof internet decoupling mechanisme I was looking for :-) Greg_Vaughn wrote: Mikis [EMAIL PROTECTED] wrote on 03/09/2007 07:17:32 AM: I have being struggling with problems regarding dependencies on apparently released

Re: [m2] Preventing transitive snapshot downloading

2007-03-10 Thread Wendy Smoak
On 3/10/07, Mikis [EMAIL PROTECTED] wrote: Thanks, the global mirrorOf*/mirrorOf is exactly the bullet-proof internet decoupling mechanisme I was looking for :-) From the docs, The repository must contain all of the desired artifacts, or be able to proxy the requests to other repositories.

repository mirror vs. override

2007-03-10 Thread Wendy Smoak
The discussion of using mirrorOf=* to mirror all repositories reminded me of a question I have. What is the difference between defining a mirror of central vs. defining it in a repository (and pluginRepository) to override the url? When would you use one over the other? Some observations...

Re: Felix build fails using Maven 2.0.5

2007-03-10 Thread Tim Moloney
Yes, maven-bundle-plugin is used later in the build. maven-bundle-plugin is the third bundle to be built in the multi-module build and the first module to use it is javax.servlet which is the fourth module in the build. Tim Andrew Williams wrote: Sorry, what I meant is that I assume it is

Re: [Maven2] xmlbeans-maven-plugin Issue -- StAX transitive dependencies

2007-03-10 Thread Jörg Schaible
Jim Bethancourt wrote: Hi Brad, I had run into the same issue that you described and added multiple dependencies and then StAX 1.2.0 to the dependency list and it the XMLBeans plugin worked for me as well. Unfortunately I am only slightly familiar with the nearness algorithm, so

Re: repository mirror vs. override

2007-03-10 Thread Kalle Korhonen
Hmm, I thought mirrorOf is only for your settings.xml... meaning the obvious difference personal vs. project settings. Kalle On 3/10/07, Wendy Smoak [EMAIL PROTECTED] wrote: The discussion of using mirrorOf=* to mirror all repositories reminded me of a question I have. What is the difference

Re: repository mirror vs. override

2007-03-10 Thread Wendy Smoak
On 3/10/07, Kalle Korhonen [EMAIL PROTECTED] wrote: Hmm, I thought mirrorOf is only for your settings.xml... meaning the obvious difference personal vs. project settings. You can define repositories in settings.xml by putting them in a profile. Then you can list it in activeProfiles if you

two projects.. invoke install for first project from another

2007-03-10 Thread sirji
Hi all, I have two projects, first is JAR project and second is webapp project. I want to invoke the install goal for the first project from the POM file of second project and expect it to move into the Lib directory of the webapp. Kindly let me if this possible.. if yes, then how can I do

RE: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Phill Moran
I removed the following section from the POM listed below executions execution phasevalidate/phase configuration goals goalscm:checkout/goal

JSP image is not loading

2007-03-10 Thread Morgovsky, Alexander \(US - Glen Mills\)
I created a Web App using plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId version2.0/version /plugin In my generated WAR, I have the following: WEB-INF\classes\images\picture.gif My JSP code is HTMLHEADTITLE Application /TITLE/HEAD BODY

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
there are JIRA filed against odd response. But they seem not blocking issues I think you are trying to use maven scm in a odd way :-) What is your use case? why do you want to scm:update after scm:checkout?: -D On 3/10/07, Phill Moran [EMAIL PROTECTED] wrote: I removed the following

RE: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Phill Moran
I think you are right. Here is the UC I develop on an windows box and use eclipse/spring and JUnit to test locally. Source stored in SVN on remote Linux box I want to use maven to compile and test on a remote Linux box. To do this I want maven to check out code on remote Linux box If tests all

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
if you configure maven correctly then: 1. use svn to check out the source tree 2. use eplipse:add-maven-repo adn eclipse:eclipse to setup your eclipse workspace and projects 3. Use jboss-maven-plugin or maven cargo to deploy -D On 3/10/07, Phill Moran [EMAIL PROTECTED] wrote: I think

Re: JSP image is not loading

2007-03-10 Thread Wayne Fay
Files in WEB-INF/ and META-INF/ are not allowed to be served (directly) to an HTTP request, to prevent someone from attempting to access your source code and configuration files etc. Move the images directory so it shares the same parent as WEB-INF and try again (from blah/WEB-INF/classes/images

appassembler-maven-plugin requires java 5?

2007-03-10 Thread Dan Tran
is it intended? I am still at java4 for my build, cant goto java 5 yet -D [INFO] Installing C:\dev\iplocks\iplocks-dss\target\iplocks- dss-6.2.0-2-SNAPSHOT .jar to C:\dev\iplocks\iplocks-dss\target\appassembler\repo\com\iplocks\sox\iplo cks-dss\6.2.0-2-SNAPSHOT\iplocks-dss-6.2.0-2-SNAPSHOT.jar