Re: [m2] SSL certificate name does not match

2007-10-19 Thread David Williams
Adrian, I don't know if you have already done this or not but I wanted to tell you anyway just in case. I have Java 1.5.0_12 installed on my machine. When it was installed, it installed the JDK and JRE directories as listed below. C:\jdk1.5.0_12 C:\jre1.5.0_12 I first copied the jssecacert fil

[ANN] JsUnit 1.3 final released

2007-10-19 Thread Jörg Schaible
New release JsUnit version 1.3 Note, this is JsUnit from BerliOS, not to be mistaken with JsUnit from SourceForge. Both projects are completely independent, they went simply public nearly both at the same time years ago. JsUnit is a simple framework to write repeatable tests in JavaScript. It is

Re: Possible conflict with ejb and jar plugins

2007-10-19 Thread Wayne Fay
The plugins are versioned independently. I assume the exclude/include functionality is simply not available in ejb plugin v2.1. Wayne On 10/19/07, Mark_E <[EMAIL PROTECTED]> wrote: > > I think your right, somehow the excludes not working in the ejb plugin is > overriding the excludes that now wor

Plugins run from package=pom project run incorrectly

2007-10-19 Thread Gary Kind
I have a project in a directory called trunk. Its packaging is "pom". It has a tag with several child projects to run. Each of those projects has its packaging as 'jar' or 'war'. So when I run 'mvn install' from the parent pom project, it goes into the first child jar project, where I mus

Re: Possible conflict with ejb and jar plugins

2007-10-19 Thread Mark_E
I think your right, somehow the excludes not working in the ejb plugin is overriding the excludes that now works in the jar plugin (2.2-SNAPSHOT). The ejb plugin is only at version 2.1 so my guess is the path that was put into the jar plugin needs to go into the ejb plugin. I will try to submit

Re: Possible conflict with ejb and jar plugins

2007-10-19 Thread Mark_E
Hi Wayne, I am only building both artifacts out of one pom since the project itself is meant to produce a jar and an ejb that we deploy to the application server. See I currently do this with my Ant build and as I migrate over to Maven, I guess I need to get used to the Maven way of doing thing

Re: Looking for UML Diagram Plugin

2007-10-19 Thread Mark Hobson
On 19/10/2007, Wendy Smoak <[EMAIL PROTECTED]> wrote: > I was using Windows when I wrote up the example. I just did it on OS > X, haven't tried it on Linux but I imagine it should work. Here's the > GraphViz download page: http://www.graphviz.org/Download..php > > You can take the example from t

Re: The svn command failed ... Server certificate verification failed: issuer is not trusted

2007-10-19 Thread Bill Brown
Greetings Wendy: Thanks for seeing this. I do use a startup script for continuum. It uses the environment from /etc/profile which contains this relevant info: ... JAVA_HOME=/usr/lib/jvm/java-6-sun MAVEN_HOME=/opt/maven PATH=$PATH:$MAVEN_HOME/bin JAVA_OPTS="-Xms256m -Xmx1792m -XX:PermSize=12

Assembly change artifact extension

2007-10-19 Thread Saloucious
Hi Is it possible to change assembly artifact extension (here i need to produce a SAR) ? I konw it is possible to do this for over plugins, eg: jar (Create a new empty plugin with a components.xml file with my.new.extension) But i fail to do this with assembly. Any ideas ? -- View this mess

Re: How to compile/package files in a module into different jars?

2007-10-19 Thread Quakky
Here are some of the negatives: Testing time increases if more files are grouped, bugs can take longer to be found if alot of files are compiled together, and the possibility of the whole application not working because the code can't find the correct files/jars. The reason why the 1 jar/module i

Re: M2 release:prepare fails with Subversion to tag SCM reason: Source url is from different repository

2007-10-19 Thread Dennis Lundberg
I got the error message "Source url is from different repository" a while back. It turned out that having a user name in the scm url can sometimes cause problems for the release-plugin. After I removed the user name from the scm url it worked. bmat wrote: mvn release:prepare -

Re: Failure getting to codehaus?

2007-10-19 Thread Dennis Lundberg
Neither of the plugins listed in the log below are in the codehaus repository, they are in the central repository. It looks to me as if you have excluded the central repository and/or replaced it with "elca-services" and "Sakai Plugin Repo". Info about repositories can be found here: http://m

Re: How to compile/package files in a module into different jars?

2007-10-19 Thread Wayne Fay
Maven likes 1 artifact per module. So the advice of the guys on IRC is best. What "negative side affects" are your coders worried about? Wayne On 10/19/07, Quakky <[EMAIL PROTECTED]> wrote: > > Hi guys, > I have been working with maven for about a week or so, and ive been doing > good progress wi

How to compile/package files in a module into different jars?

2007-10-19 Thread Quakky
Hi guys, I have been working with maven for about a week or so, and ive been doing good progress with it, but now im stuck at a point where I dont know how to compile files in a module into different Jars. What I mean by that is lets say I have files "A", "B" and "C", and I would like to compile f

Re: Weird problem with running Junit 3 tests

2007-10-19 Thread Insitu
Problem solved. Apologies for the noise... -- OQube < software engineering \ génie logiciel > Arnaud Bailly, Dr. \web> http://www.oqube.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: Error running Javadoc plugin under CruiseControl

2007-10-19 Thread Wayne Fay
The forward slash may be the problem (a bug). I have no idea. Try executing "mkdir m:/" and see if it works or fails. If it is a bug, dig into the m-javadoc-p and fix it, and see if that solves your problem. If so, please file a bug report and attach your fix. Wayne On 10/19/07, Simon Kingaby

Weird problem with running Junit 3 tests

2007-10-19 Thread Insitu
Hello, I have an annoying problem with running test cases. I have the following test class: public class JsTest extends StandaloneTest { public void testXXX() { ... } } StandaloneTest extends junit.framework.TestCase. I got the following results: -

RE: Error running Javadoc plugin under CruiseControl

2007-10-19 Thread Simon Kingaby
All of the other TARGET folders are created correctly. The error is strictly relating to the JavaDocs plugin. The checkstyle, PMD, surefire, docck, etc., all work fine. Thanks. Is it important that the folder it is trying to create: M:/JavaEnv/Builds/checkout/DogOnAPorch/trunk/target/site/apidocs

Re: Looking for UML Diagram Plugin

2007-10-19 Thread Wendy Smoak
On 10/19/07, Mac-Systems <[EMAIL PROTECTED]> wrote: > i searched a bit the www for an UML Generator Plugin. > Anyone can point me whats good for Maven 2 ? > Generation should run unter Linux Maschine, as i read > about http://wiki.wsmoak.net/cgi-bin/wiki.pl?UMLGraph > which seems to run only on Wi

Re: How to deploy custom archetype to all users?

2007-10-19 Thread dhoffer
Yes, that works great. It automatically downloads the latest version. Thanks much! Dave Wayne Fay wrote: > > Your users will need to specify -DremoteRepositories=... on the > command line when they run archetype:create. They may need to specify > the -DarchetypeVersion though I'm honestly no

Looking for UML Diagram Plugin

2007-10-19 Thread Mac-Systems
Hello, i searched a bit the www for an UML Generator Plugin. Anyone can point me whats good for Maven 2 ? Generation should run unter Linux Maschine, as i read about http://wiki.wsmoak.net/cgi-bin/wiki.pl?UMLGraph which seems to run only on Windows... Thanks, Jens -

Re: Error running Javadoc plugin under CruiseControl

2007-10-19 Thread Wayne Fay
I doubt your CruiseControl user is the same as your regular login user that you've run your test with. Does the CC user have the proper privileges to create files/directories on the M: drive etc? "Unable to create directory" -- seems like a filesystem problem. Wayne On 10/18/07, Simon Kingaby <[

WebDav, Wagon and Digest Authentication

2007-10-19 Thread Dave Syer
Does anyone have any experience setting up Wagon to publish to a DAV server with Digest authentication? I've seen posts where people said it worked, but no clues as to what they had to do. Something in the server definition in settings.xml? The default seems to be to use Basic authentication wh

Re: Problems in option - Release project

2007-10-19 Thread Emmanuel Venisse
Please, file an issue. Emmanuel fherrerav a écrit : Not sure if this have been reported before. I tried to use the release option on a project but i get an error. It only happens when there are more than one project in the group. I select one of the projects, clic release and then shows error.

Re: Setting up company repository

2007-10-19 Thread Graham Leggett
On Fri, October 19, 2007 3:37 pm, Mark Russell wrote: > I am trying to setup a maven repository for my company to make artifacts > that my company produces available to our developer > community. I think I have it setup properly. However, when I run the > test pom It can not find the artifacts I

Re: Javadoc Plugin 2.3 - Generating Doc caused Out of Memory -Xmx doent help

2007-10-19 Thread Mac-Systems
Thanks for your Answer, i will try that. - Jens Also, you're not running out of heap space but of permgenspace. Try (for maven / antrun plugin) -XX:MaxPermSize=256 or (for the javadoc plugin) -J -XX:MaxPermSize=256 Hth, Nick Stolwijk -Original Message- From: Tim Kettler [mailto:[

Setting up company repository

2007-10-19 Thread Mark Russell
I am trying to setup a maven repository for my company to make artifacts that my company produces available to our developer community. I think I have it setup properly. However, when I run the test pom It can not find the artifacts I have on my company repository. Even with --debug I do not s

Re: Javadoc Plugin 2.3 - Generating Doc caused Out of Memory -Xmx doent help

2007-10-19 Thread Mac-Systems
Yes, i've set maven opts up to 1024m. - jens Hi, in the subject you say genereating the javadoc causes the OOME, but judging from the log output it seems it's in the antrun-plugin execution. Have you just tried invoking maven itself with more memory: mvn -Xmx... or MAVEN_OPTS=-Xmx... -Tim M

Re: svn: PROPFIND of Server certificate verification failed: issuer is not trusted

2007-10-19 Thread Emmanuel Venisse
Look in your ${user.home}/.subversion/auth/svn.ssl.server/ directory if your certificate is correctly stored. Emmanuel VanIngen, Erik (ESTG) a écrit : All, We are using apache-continuum-1.1-beta-3 on W2000 and are still facing this error: svn: PROPFIND request failed on '/svnroot/gie

Re: When builds are done in multi-module projects ?

2007-10-19 Thread Emmanuel Venisse
Alex Tanaev a écrit : I have a different problem (continuum 1.0.3): Changes in a project trigger its rebuild, but then another project that depends on the first one is NOT rebuilt. dependant projects are rebuilt in Continuum 1.1 not in 1.0.3 Emmanuel Why is that? Alex Emmanuel Venisse

Re: Jabber Recipient Address - Address is invalid

2007-10-19 Thread Emmanuel Venisse
Filed validators for jabber screen are in apps\continuum\webapp\WEB-INF\classes\org\apache\maven\continuum\web\action\notifier\Jabber*NotifierEditAction-jabberProjectNotifierSave-validation.xml files. Emmanuel Vanja Petreski a écrit : Hi, typical JID on my network is [EMAIL PROTECTED] and no

Re: M2 release:prepare fails with Subversion to tag SCM reason: Source url is from different repository

2007-10-19 Thread bmat
Hi, Thanks for your reply! but file:///my/path or file://localhost/my/path or file://127.0.0.1/ my/path, shouldn't all of these work? I don't think this was the cause of my problemmaven was able to commit the modified pom.xml to the trunk however it was unable to create a tag, the pr

Re: When builds are done in multi-module projects ?

2007-10-19 Thread Alex Tanaev
I have a different problem (continuum 1.0.3): Changes in a project trigger its rebuild, but then another project that depends on the first one is NOT rebuilt. Why is that? Alex Emmanuel Venisse wrote: > > Continuum look at scm changes, if it contains some sources updates, it > build the proj

RE: Junit 4 or TestNG 5 suite support

2007-10-19 Thread Joel Wiegman
Thanks for the response Patrick. I'm not having problems using Junit 4 (I'm actually using Surefire version 2.4-collab-SNAPSHOT because 2.4-SNAPSHOT is still broken). Just having problems getting any of the suite functionality to work. Frustrating... -Original Message- From: Patrick He [

Re: how to specify the "default" email domain ?

2007-10-19 Thread Emmanuel Venisse
no, it isn't possible yet. File an issue and will look at it in next version or maybe before the beta-4/rc-1 release Emmanuel nicolas de loof a écrit : Hello, I'd like continuum to notify developers who broke the build by email. The new "Send a mail to latest committers" option should solve t

how to specify the "default" email domain ?

2007-10-19 Thread nicolas de loof
Hello, I'd like continuum to notify developers who broke the build by email. The new "Send a mail to latest committers" option should solve this, but many developers in my team did not add a element in the project POM. Is there any way to make continuum use a default email format ? We all use our

Re: M2 release:prepare fails with Subversion to tag SCM reason: Source url is from different repository

2007-10-19 Thread Tim Kettler
Hi, bmat schrieb: > mvn release:prepare > --- > > I recently had this problem using a local installation of subversion and > using file uris e.g. > > scm:svn:file://localhost/repostory/myproject/trunk The syntax for urls is: [protokoll]://[path]. A file url to the path '/my/pat

Re: assembly:single failing

2007-10-19 Thread Tim Kettler
Hi, is the pom where the assembly is build also used as the parent pom for the modules? If yes, you've hit a design flaw in maven. Currently, the parent relationship introduces a dependency from child to parent, hence the parent is build first and the artifact of the child doesn't exist yet. Look

Re: M2 release:prepare fails with Subversion to tag SCM reason: Source url is from different repository

2007-10-19 Thread bmat
mvn release:prepare --- I recently had this problem using a local installation of subversion and using file uris e.g. scm:svn:file://localhost/repostory/myproject/trunk I could not get this to work... so I installed Apache 2.0 (Note 2.0 NOT 2.2 cos this doesn't work with subver

archetype.xml resources

2007-10-19 Thread james.bond.007
Hi, I'm trying to design an archetype to create a (Documentum) web application. The archetype should create the following webapp structure : contextRoot/ /help /wdk /webcomponent /webtop /WEB-INF ... inside each of these folders there are a lot of other folders and files (It's

assembly:single failing

2007-10-19 Thread stephane . demurget
Hi again, (thanks to Stéphane Veyret for my previous question, I moved out the and tags in an tag and it is triggered now -- but does not work as expected) I know the subject has been brought up multiple times, but reading the whole summary thread (http://www.mail-archive.com/users@maven.a

Maven Release Plugin and autoVersionSubmodules

2007-10-19 Thread Johan Lindquist
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi All, I am having an issue with the release plugin. I am getting an assertion failure just after the plugin asks for the release version to be built (see below for stack trace). Debugging it, it seems the plugin adds the root project id to the re

RepositoryMetadataExceptions

2007-10-19 Thread Kristof Jozsa
Hi, I think I'm having some progress with my archiva proxy-setup using mirrorOf="*". I started again from scratch, fetched archiva beta2, unpacked, configured all remote repositories I'd need and set up the managed internal repo to be a proxy of them all. As a test, I'm trying to build archiva-be

Jabber Recipient Address - Address is invalid

2007-10-19 Thread Vanja Petreski
Hi, typical JID on my network is [EMAIL PROTECTED] and not [EMAIL PROTECTED] web application has validation, so i can't enter [EMAIL PROTECTED] How to fix that? Thanx, Vanja

Failure getting to codehaus?

2007-10-19 Thread Aaron Zeckoski
I am getting the following failure on my builds today: [INFO] artifact org.apache.maven.plugins:maven-compiler-plugin: checking for updates from elca-services [INFO] artifact org.apache.maven.plugins:maven-compiler-plugin: checking for updates from codehaus snapshot repository [INFO] artifact org.

svn: PROPFIND of Server certificate verification failed: issuer is not trusted

2007-10-19 Thread VanIngen, Erik (ESTG)
All, We are using apache-continuum-1.1-beta-3 on W2000 and are still facing this error: svn: PROPFIND request failed on '/svnroot/giews/gw_giews/trunk/fenix-4domain' svn: PROPFIND of '/svnroot/giews/gw_giews/trunk/fenix-4domain': Server certificate verification failed: issuer is n

Re: Maven good Design

2007-10-19 Thread Saloucious
Ok, know i'm refactoring project to have something like : project1-ejb project1-sar project2-jar ... In actual Ant build process, some properties files are not embed in jar and are copied in a conf dir (conf directory is in server'sclasspath). Which is the best pratice ? create a new project

Re: Version Ranges & Dependency Conflicts

2007-10-19 Thread Mark Hobson
Hi Christian, On 18/10/2007, Christian Weber <[EMAIL PROTECTED]> wrote: > i'm using Maven + Artifactory to manage my Java Projects. Which worked fine > so far. > But now i'm running into Problem with the Dependency Resolving. > > I have different Versions of a LibA, e.g.: > LibA-1.4.13.9 > LibA-1

RE: maven-scm-provider-starteam

2007-10-19 Thread Ken Turner
OK, I have raised a JIRA at http://jira.codehaus.org/browse/SCM-349 -- View this message in context: http://www.nabble.com/maven-scm-provider-starteam-tf4647423s177.html#a13290063 Sent from the Maven - Users mailing list archive at Nabble.com. --

RE: maven-scm-provider-starteam

2007-10-19 Thread Jörg Schaible
> On 10/18/07, Ken Turner <[EMAIL PROTECTED]> wrote: >> >> Sorry, I'm new to this community, but what's a JIRA and how do I >> file it? Dan Tran wrote on Thursday, October 18, 2007 9:58 PM: > JIRA info is at maven.apache.org/scm site And you have to create an account (simply email address is e

RE: DuplicateProjectException

2007-10-19 Thread Jörg Schaible
Heinrich Nirschl wrote on Thursday, October 18, 2007 6:12 PM: > On 10/18/07, Jason Nerothin <[EMAIL PROTECTED]> wrote: >> Okay, so what I mean is that I have four complilation units: Unit A >> has compile-time dependencies on B1 and B2 which in turn have a >> compile-time dependency on unit C. "mv