Jabber google talk

2007-02-03 Thread AyoContinuum
Hi, I am having a bit of trouble getting continuum to alert me of builds via google talk/jabber. I setup jabber in continuum according to the faq on the apache continuum website. It says that it can't connect to google talk at that port. I set the recipent as [EMAIL PROTECTED] ideas? I

ERROR: JAVA_HOME is set to an invalid directory

2007-02-03 Thread Vaishoo
hi I am using maven for the 1st time and I am getting the error as ERROR: JAVA_HOME is set to an invalid directory but I checked so many times JAVA_HOME is been set correctly. I am not able guess it . I need help in learning this. thanks vaishoo

Re: continum newbie questions

2007-02-03 Thread Rahul Thakur
Continuum needs Maven to build projects that use Maven POM (Project Object Model). It would need Ant to build Ant based projects, Maven 1 to build projects that use Maven 1 POM so on and so forth... Dependency on a company's remote repo would depend on the dependencies that your project(s)

RE: ERROR: JAVA_HOME is set to an invalid directory

2007-02-03 Thread Greg Jones
Vaishoo, The first thing that comes to mind is to check that you are actually using a JDK, rather than a JRE and that your JAVA_HOME is pointing to a JDK root directory, not the nin directory. E.g. JAVA_HOME=C:\Program Files\Java\jdk1.5.0_11 Or JAVA_HOME=/usr/lib/j2se5.0-sun The other thing

Re: POM Inheritance

2007-02-03 Thread franz see
Good day to you, jp4, Maven2 does not have multiple pom inheritance. You may want to try and use profile.xml and build.xml. I am not sure if they can be used as workarounds to 2nd and 3rd parents though, but that's the only thing I can think of right now. Cheers, Franz jp4 wrote: I was

Re: dependency and os.arch os.name

2007-02-03 Thread franz see
Good day, You can also take a look at [1] for more info on how OS activation works. Also, you may want to add some info in it as well since the page is new and very much incomplete yet. Thanks, Franz [1] http://docs.codehaus.org/display/MAVENUSER/Profiles Wayne Fay wrote: BTW I noticed

Re: Why maven 2.0.4 do not work ???

2007-02-03 Thread franz see
Good day, You may want to try mvn archetype:create -DgroupId=testapp -DartifactId=testapp --check-plugin-updates ( see mvn --help for more info ). Cheers, Franz Ariel Isaac Romero Cartaya wrote: Hi every body: I want to use maven 2.0.4 with andromda, I was trying to do the

Re: ERROR: JAVA_HOME is set to an invalid directory

2007-02-03 Thread Wayne Fay
Try this: %JAVA_HOME%/bin/javadoc ...1 error If that works (command exists and runs with no input), then your JAVA_HOME is set properly. If not, then you've got something wrong, and you're probably pointing to a JRE rather than a JDK as Greg suggested. Wayne On 2/3/07, Greg Jones [EMAIL

Re: maven-surefire-plugin: Unable to determine the release version

2007-02-03 Thread ender
Thanks, but I was able to 'solve' the problem by taking the rather drastic approach of manually emptying my local repository and reinstalling maven. Just deleting the files in my repository associated with surefire didn't work by the way, that just resulted in the same error. Greetings, Stein

Re: dependency and os.arch os.name

2007-02-03 Thread Laurent GRANIE
Hi, Thanks, I have read it and have use it yet. I need this to determine the goob .ajr file for jogl. My new problems are : - how deal with native (.dll and .so) files like the native tag in jnlp? I think my profile should determine the java.library.path value. - how maven eclipse could use

Is it possible to do string replacement in an archetype?

2007-02-03 Thread mraible
I'd have the following in the pom.xml of an archetype: jdbc.url![CDATA[jdbc:mysql://localhost/${artifactId}?createDatabaseIfNotExist=trueamp;useUnicode=trueamp;characterEncoding=utf-8]]/jdbc.url If users use a dash in their artifactId, this will fail on most databases. Is there a String

Testing archetypes with Ant

2007-02-03 Thread mraible
I've figured out a way to test archetypes with Ant, but it's not quite as clean as I'd like. In my archetypes directory, I have a common-test.xml[1] file that gets called from the archetype using the antrun-plugin: The following works: plugin

Re: Is it possible to do string replacement in an archetype?

2007-02-03 Thread Raphaël Piéroni
Hi Matt, According to String javadoc, you could try the replace(char oldChar, char newChar) method jdbc.url![CDATA[jdbc:mysql://localhost/${artifactId.replace('-','_')} ?createDatabaseIfNotExist=trueamp;useUnicode=trueamp;characterEncoding=utf-8]]/jdbc.url I don't know if it works. Regards,

Re: Is it possible to do string replacement in an archetype?

2007-02-03 Thread mraible
I tried this and it doesn't work. If I pass in an archetypeId with a dash in it, it gets replaced verbatime with the archetypeId (no replacement takes place). Matt Raphaël Piéroni-3 wrote: Hi Matt, According to String javadoc, you could try the replace(char oldChar, char newChar)

RE: Re: POM Inheritance

2007-02-03 Thread Morgovsky, Alexander \(US - Glen Mills\)
You may want to use transitive parents. By this I mean have B depend on A, C depend on B, etc. This way, when C is dependent on B, C is also dependent on A. Thanks. This message (including any attachments) contains confidential information intended for a specific individual and purpose,

Remove warnings when sources are not available with eclipse plugin?

2007-02-03 Thread kalebral
When using the maven-eclipse-plugin and setting downloadSources to true, is there anyway to get rid of the warnings when sources are not available. there are a lot of jars that don't have sources available and thus the log file fills up quickly with all of these warnings. Thanks. -- View this

Re: Testing archetypes with Ant

2007-02-03 Thread mraible
Hmmm, this might not work as good as I thought it did. It seems when the antrun plugin fails during integration testing, the antrun plugin running the tests doesn't catch and report the failure. Any idea how to fix this? [exec] [ERROR] BUILD ERROR [exec] [INFO]

Re: Remove warnings when sources are not available with eclipse plugin?

2007-02-03 Thread Wendy Smoak
On 2/3/07, kalebral [EMAIL PROTECTED] wrote: When using the maven-eclipse-plugin and setting downloadSources to true, is there anyway to get rid of the warnings when sources are not available. there are a lot of jars that don't have sources available and thus the log file fills up quickly with

Maven2+Hibernate3 Annotation Problem

2007-02-03 Thread lemon dumpling
Hi, I want to generate database schema to a sql file and feed the schema into my database. I have hibernate annotations instead of hbm.xml files. plugin groupIdorg.codehaus.mojo/groupId artifactIdhibernate3-maven-plugin/artifactId version2.0-SNAPSHOT/version