Problem to login in Continuum 1.1 final with Internet Explorer

2007-12-18 Thread Claudio R
Hi, I installed the Continuum 1.1 final in a linux machine. When I try do login (as admin) I am redirect to home. This happen with Internet Explorer. In firefox work out. I am using correct user and password. What´s the problem? I cleaned all cookies, but problem persist ... Help

Maven Site, No Anonymous Access to Source Repository

2007-12-18 Thread Roger Ye
Hi, I just made an attempt as I've said, but it failed, I tried to to configure the project-info-reports plugin as following: reporting plugins plugin artifactIdmaven-project-info-reports-plugin/artifactId configuration

Getting CVS folder in the builds

2007-12-18 Thread Hemant Malik
Hi, I noticed the CVS folder in the builds that I am using continuum and maven to build. Could someone please guide on how to exclude the CVS files being packaged along with the jars. Regards, Hemant Malik

Dependency rpoblem in multi-module project

2007-12-18 Thread Guillaume Lederrey
Hello ! When trying to build my multi-module project, I get a missing dependency from one module to the other. To be clearer : I have multiple modules, declared in the main pom.xml as : modules moduleM2_Artifacts/shared/module moduleM2_Artifacts/server/module

Re: Maven2 + Classpath

2007-12-18 Thread Steinar Bang
Stuart McCulloch [EMAIL PROTECTED]: well, there are system scope dependencies that let you refer to library artifacts in a fixed location like /usr/share/lib/... but their use is discouraged, because it makes things less portable:

Re: Maven2 + Classpath

2007-12-18 Thread Steinar Bang
Stuart McCulloch [EMAIL PROTECTED]: FYI, you might be interested in: http://wiki.ops4j.org/confluence/x/A4A6Pax-Runner http://wiki.ops4j.org/confluence/x/8QPax-Construct which aim to make OSGi development and deployment a breeze with Maven Thanx for the tip! I'll check

Re: Maven2 + Classpath

2007-12-18 Thread Stuart McCulloch
On 18/12/2007, Steinar Bang [EMAIL PROTECTED] wrote: Stuart McCulloch [EMAIL PROTECTED]: well, there are system scope dependencies that let you refer to library artifacts in a fixed location like /usr/share/lib/... but their use is discouraged, because it makes things less portable:

offline setting inside settings.xml does not work with Maven 2.0.7

2007-12-18 Thread Christian Schmidt-Guetter
Hello list, according to documentation at http://maven.apache.org/ref/2.0.4/maven-settings/settings.html , Maven should avoid all downloads if offline/ is set in ~/.m2/settings.xml : +++ Cite start Element Description

Re: offline setting inside settings.xml does not work with Maven 2.0.7

2007-12-18 Thread Guillaume Lederrey
Try like this : settings offlinetrue/offline /settings On 18/12/2007, Christian Schmidt-Guetter [EMAIL PROTECTED] wrote: Hello list, according to documentation at http://maven.apache.org/ref/2.0.4/maven-settings/settings.html , Maven should avoid all downloads if offline/ is

Re: offline setting inside settings.xml does not work with Maven 2.0.7

2007-12-18 Thread Christian Schmidt-Guetter
Hello Guillaume, Guillaume Lederrey schrieb: Try like this : settings offlinetrue/offline /settings ... That works fine! - Thank you very much. Christian - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: offline setting inside settings.xml does not work with Maven 2.0.7

2007-12-18 Thread nicklist
Also take a look at the XSD [1]. Here the offline element is of type xs:boolean, which indicates it should be true or false. Default = false, so even if you include the element it is still false. Hth, Nick Stolwijk [1] http://maven.apache.org/xsd/settings-1.0.0.xsd. -Original

Can anyone recommend a resource on profile best practices?

2007-12-18 Thread Ryan Moquin
Our build is starting to become more complex with various resources and deployment servers. I've been wrestling with the best way to use profiles to help me automatically deploy to these environments (since errors abound trying to reconfigure everything everytime I need to deploy anything). Does

Maven Site, No Anonymous Access to Source Repository

2007-12-18 Thread Roger Ye
Hi, I'm using mvn site to generate my project site, and in the source-repository.html page, it contains the anonymous access information to my svn source repository, but the fact is that we don't provide svn anonymous acess, and authentication is mandatory, So the question is how to remove the

Re: Resolving snapshot filenames from Mojo

2007-12-18 Thread ewhauser
I ended up stealing some of the code from the Assembly plugin. However, there are a couple of dependencies that it was still always resolving incorrectly. I believe that there may be someone incorrect with the pom's for these projects that is causing the issue: [WARNING] Attempting to build

Re: Code checkout not happening

2007-12-18 Thread Doug Knesek
My scm is Subversion. I am running Continuum 1.1 and Maven 2.0.8. I believe that my scm url is correct. I've been running maven builds manually for a while now. Doesn't continuum get the scm info that it uses from the pom? Or is there somewhere else I have to set this information Emmanuel

RE: Maven Site, No Anonymous Access to Source Repository

2007-12-18 Thread nicklist
In your pom file you have defined your SCM connections: scm connection/ developerConnection/ tag/ url/ /scm connection is your anonymous access on the web page. developerConnection is your developer access on the website url is your web access on the website. See also the

Re: Maven Site, No Anonymous Access to Source Repository

2007-12-18 Thread Roger Ye
Ah, thanks, I had added the scm.connection element back because continuum had had problem to checkout the source code, So the correct solution is to configure the project info report plugin and override the anonymousConnection configuration element to avoid it defaulting to scm.connection. I'll

webstart-maven-plugin: jnlp configuration element missing.

2007-12-18 Thread Farrukh Najmi
I am trying to generate a webstart distribution for my UI using org.codehaus.mojo:webstart-maven-plugin:1.0-alpha-2-SNAPSHOT:jnlp I created my plugin configuration based upon examples provided. I am currently getting an error suggesting that the jnlp element is missing. But its not missing.

Surefire XML output

2007-12-18 Thread jnusaira
This may be a shot out there. But i am having trouble with the XML output on the surefire report. It does not print out the classname on the testcases, and I need it so i can generate meaningful output from it. I noticed XMLReport seems to look for a group if its filled in; however, ours is

Re: webstart-maven-plugin: jnlp configuration element missing.

2007-12-18 Thread Jerome Lacoste
On Dec 18, 2007 6:48 PM, Farrukh Najmi [EMAIL PROTECTED] wrote: I am trying to generate a webstart distribution for my UI using org.codehaus.mojo:webstart-maven-plugin:1.0-alpha-2-SNAPSHOT:jnlp I created my plugin configuration based upon examples provided. I am currently getting an error

Surefire can't find resource if forkMode=once

2007-12-18 Thread vetalok
Hi all I have maven 2.0.7 and the latest surefire plugin. Surefire can't find resource if forkMode=once ( if forkMode=never it works) Here is snip of code: BaseStandaloneTest.class.getResource(/login.conf).toString(); Any ideas? -- View this message in context:

Re: Surefire can't find resource if forkMode=once

2007-12-18 Thread Jerome Lacoste
On Dec 18, 2007 8:21 PM, vetalok [EMAIL PROTECTED] wrote: Hi all I have maven 2.0.7 and the latest surefire plugin. Surefire can't find resource if forkMode=once ( if forkMode=never it works) Here is snip of code: BaseStandaloneTest.class.getResource(/login.conf).toString();

Managing remote repositories

2007-12-18 Thread Siegmann Daniel, NY
I am working on ditching maven-proxy and our current remote repository setup. I intend to replace this with Archiva, but I cannot figure out how the repositories should be structured. I want to have one private repository with all of our internal artifacts and 3rd party libraries. I also want to

want surefire report emailed with build notification

2007-12-18 Thread treese
Is there a capability to include a link to the surefire report in the build notification? User doesn't like having to log into Continuum to view it. They want it emailed. What is best approach for sharing this report? -- View this message in context:

Re: Managing remote repositories

2007-12-18 Thread Wendy Smoak
On 12/18/07, Siegmann Daniel, NY [EMAIL PROTECTED] wrote: I want to have one private repository with all of our internal artifacts and 3rd party libraries. I also want to have one proxy repository which includes this private repo, some other private repos, and numerous public repos. Both

Maven Site, No Anonymous Access to Source Repository

2007-12-18 Thread Roger Ye
Hi, I just made an attempt as I've said, but it failed, I tried to to configure the project-info-reports plugin as following: reporting plugins plugin artifactIdmaven-project-info-reports-plugin/artifactId configuration