RE: [M2] Need help on configuring maven.username ?

2006-02-03 Thread Malcolm Wong Ho
is there no way of setting it in a properties file ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Fri 2/3/2006 12:39 PM To: Maven Users List Subject: RE: [M2] Need help on configuring maven.username ? Have you tried passing the argument in the command

RE: [M2] Need help on configuring maven.username ?

2006-02-03 Thread fabrice . belingard
répondre à RE: [M2] Need help on configuring Maven Users List maven.username ? [EMAIL PROTECTED] che.org

Need help setting up a transitive dependency

2006-01-31 Thread Brad O'Hearne
Here's a maven 101 question: I need help setting up a transitive dependency. I have project A, which is properly set up and building using maven. Now I need to configure project B to depend on project A. How do I configure this in my pom.xml to refer to another project? Thanks for your help

RE: Need help setting up a transitive dependency

2006-01-31 Thread Dov Wasserman
:39 PM To: users@maven.apache.org Subject: Need help setting up a transitive dependency Here's a maven 101 question: I need help setting up a transitive dependency. I have project A, which is properly set up and building using maven. Now I need to configure project B to depend on project A. How do

Re: Need help setting up a transitive dependency

2006-01-31 Thread Brad O'Hearne
- From: Brad O'Hearne [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 31, 2006 5:39 PM To: users@maven.apache.org Subject: Need help setting up a transitive dependency Here's a maven 101 question: I need help setting up a transitive dependency. I have project A, which is properly set up

RE: Need help setting up a transitive dependency

2006-01-31 Thread Dov Wasserman
PROTECTED] Sent: Tuesday, January 31, 2006 5:49 PM To: Maven Users List Subject: Re: Need help setting up a transitive dependency Dov, Thanks for the reply. Ok, so this isn't going to trigger a build of project A, its just going to pull project A from the repository as it would any other dependency

Re: Need help setting up a transitive dependency

2006-01-31 Thread Brad O'Hearne
? -Original Message- From: Brad O'Hearne [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 31, 2006 5:49 PM To: Maven Users List Subject: Re: Need help setting up a transitive dependency Dov, Thanks for the reply. Ok, so this isn't going to trigger a build of project A, its just going to pull

Re: Need help setting up a transitive dependency

2006-01-31 Thread Brad O'Hearne
, January 31, 2006 5:49 PM To: Maven Users List Subject: Re: Need help setting up a transitive dependency Dov, Thanks for the reply. Ok, so this isn't going to trigger a build of project A, its just going to pull project A from the repository as it would any other dependency. Is this correct, or am I

Need help migrating *.properties from Maven1.x to Maven2

2006-01-13 Thread Martin Frixe
Hi, in my .properties files of my working maven v1 installation are many variables defined where the project.xml can find them during build process, *.properties are included in project.xml Problem is m2 ignores these files, because of replacement of these *.properties with settings.xml

Re: Need help migrating *.properties from Maven1.x to Maven2

2006-01-13 Thread Napoleon Esmundo Ramirez
Hello, If you're concerned on the versioning the project.properties provides, I recommend on using the dependencyManagement/ section in POMv4. You can fill it up in a common pom, wherein other pom's can treat it as a parent in order to inherit the declared versions. If you're interested in some

RE: Need help with ibiblio problems

2006-01-11 Thread Helck, Christopher
Yes, it is working. Thanks for the prompt help. -chris -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 10:18 PM To: Maven Users List Subject: Re: Need help with ibiblio problems fixed. Not sure why it was working for other jars before

Need help with ibiblio problems

2006-01-10 Thread Helck, Christopher
What's happened to ibiblio/maven? Maven is unable to download jaxen-1.0-FCS-full.jar. Yet when I browse to the ibiblio it seems to be there and other jars download ok. I gather there is a restructuring of ibiblio going on for maven 2. Is this the issue? Is there a description of the changes

Re: Need help with ibiblio problems

2006-01-10 Thread haginow2001-nabble
I'm constantly having timeouts and download errors with iBiblio. I recommend to use a mirror instead. Chris Helck, Christopher [EMAIL PROTECTED] wrote: What's happened to ibiblio/maven? Maven is unable to download jaxen-1.0-FCS-full.jar. Yet when I browse to the ibiblio it seems to be there

Re: Need help with ibiblio problems

2006-01-10 Thread Brett Porter
The changes should be transparent. jaxen was one of the JARs I had special cased, but it was for a version of 1.0-FCS. This should be fixed now. Please let us know if there are any other issues. - Brett On 1/11/06, Helck, Christopher [EMAIL PROTECTED] wrote: What's happened to ibiblio/maven?

RE: Need help with ibiblio problems

2006-01-10 Thread Helck, Christopher
: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 4:51 PM To: Maven Users List Subject: Re: Need help with ibiblio problems The changes should be transparent. jaxen was one of the JARs I had special cased, but it was for a version of 1.0-FCS. This should be fixed now. Please

Re: Need help with ibiblio problems

2006-01-10 Thread Brett Porter
. If I click the other jar files on the page they seem ok. I'm not sure which jaxen file you special cased. Thanks, Christopher -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 4:51 PM To: Maven Users List Subject: Re: Need help

Need help in organizing a maven project

2006-01-03 Thread Karthik V
Hi All, I'm new to maven and xdoclet and I have a confusion in organizing my project. I need to run ejbdoclet and hibernatedoclet on my source, then compile. After this, I need to create 2 jar files, each of them containing some files from the previous steps' output. By default, one jar is

Re: Need help in organizing a maven project

2006-01-03 Thread Alexandre Poitras
First, from what I understand you want two jars for your ejb, ie. ejb-client.jar and ejb-impl.jar. If this is what you are looking for, this page might help : http://maven.apache.org/plugins/maven-ejb-plugin/howto.html *you should declare an ejb packaging in your ejb pom. **To include a

Re: Need help in organizing a maven project

2006-01-03 Thread Karthik V
Hi, Thanks a lot for the quick reply. I'm not sure if I explained properly. Below is my requirement: myproj.ear -- myproj-bean.jar -- myproj.war -- all jsps, css -- WEB-INF/lib/myproj-web.jar -- WEB-INF/lib/(other 3rd party jars) -- meta-inf -- application.xml -- some 3rd party jar

Re: Need help in organizing a maven project

2006-01-03 Thread Alexandre Poitras
First I suggest you yo read this : http://maven.apache.org/guides/getting-started/index.html#How%20do%20I%20build%20more%20than%20one%20project%20at%20once? So the idea now is to create a parent project using the structure explained in the document: +- pom.xml +-my-commons | +- pom.xml +- my-ejb

Re: Need help in organizing a maven project

2006-01-03 Thread Alexandre Poitras
Oh sorry I have almost never used maven 1 so I can't help you there. On 1/3/06, Karthik V [EMAIL PROTECTED] wrote: Thanks again. Your explanation is fine. I have a few questions specific to my case - 1) I use maven 1.0.2, since there doesnt seem to be a good netbeans mevenide plugin for

Re: URGENT - weired problem Need help - Not finding the ant task def

2005-12-28 Thread Lester Ecarma
Hi Raghurajan, Would it be possible for you to provide snippets of your poms, particularly the maven-antrun-plugin declaration part, or the error log if any? I can't seem to replicate your problem. Thanks. [EMAIL PROTECTED] wrote: Hi all I have following structure MyModule + |- EJB

Re: URGENT - weired problem Need help - Not finding the ant task def

2005-12-28 Thread raghurajan . x . gurunathan
Hi Thanks for your replly, here is the error i'm getting Embedded error: taskdef class weblogic.ant.taskdefs.webservices.javaschema.JavaSchema cannot be found [INFO] [INFO] Trace

Re: URGENT - weired problem Need help - Not finding the ant task def

2005-12-28 Thread Lester Ecarma
I think you just need to declare the dependencies outside the plugin/plugin scope (particularly the one which holds the weblogic.ant.taskdefs.webservices.javaschema.JavaSchema class). Thus, your pom should look something like... dependencies dependency

URGENT - weired problem Need help - Not finding the ant task def

2005-12-27 Thread raghurajan . x . gurunathan
Hi all I have following structure MyModule + |- EJB Module | - - - pom.xml |- WebService Module | - - - pom.xml +--- pom.xml I do use some ant task def stuff in Webservice module when i do mvn clean package from WebService Module it goes fine it does whatever

Need help in installing Maven

2005-12-21 Thread Pagadala Baskar, Kiran Kumar \(Cognizant\)
Hi All, I am new to Maven. Could someone help me figure out why I am getting this error? I could create the archetype but when I tried to compile the same, I am getting this error. Also, I am using sun JDK1.4.0_02. Thanks and Regards, Kiran D:\MavenDownload\maven-2.0\my-appmvn compile [INFO]

Re: Need help in installing Maven

2005-12-21 Thread Jurgen De Landsheer
run mvn compile -e and post your stacktrace Pagadala Baskar, Kiran Kumar (Cognizant) wrote: Hi All, I am new to Maven. Could someone help me figure out why I am getting this error? I could create the archetype but when I tried to compile the same, I am getting this error. Also, I am using sun

RE: Need help in installing Maven

2005-12-21 Thread Christopher Cobb
, December 21, 2005 8:37 AM To: Maven Users List Subject: Need help in installing Maven Hi All, I am new to Maven. Could someone help me figure out why I am getting this error? I could create the archetype but when I tried to compile the same, I am getting this error. Also, I am using sun

RE: Need help in installing Maven

2005-12-21 Thread Pagadala Baskar, Kiran Kumar \(Cognizant\)
, December 21, 2005 8:37 PM To: 'Maven Users List' Subject: RE: Need help in installing Maven As a matter of style, I would create a directory named D:\MavenProjects and put my projects in there, and leave the maven-2.0 directory untouched. Oh yeah, and use the -e option. -Original Message- From

[m2] Need help fixing dependencies in a pom

2005-11-12 Thread Wendy Smoak
I'm trying to fix the Commons Chain pom, which has a dependency on MyFaces: dependency groupIdmyfaces/groupId artifactIdmyfaces-jsf-api/artifactId version1.0.8-beta/version /dependency I'm creating a 'Struts Blank' archetype, so the process is 1. mvn install my archetype

Re: [m2] Need help fixing dependencies in a pom

2005-11-12 Thread Stephen Duncan
I believe you must do optionaltrue/optional rather than just optional/ -Stephen On 11/12/05, Wendy Smoak [EMAIL PROTECTED] wrote: I'm trying to fix the Commons Chain pom, which has a dependency on MyFaces: dependency groupIdmyfaces/groupId artifactIdmyfaces-jsf-api/artifactId

Re: [m2] Need help fixing dependencies in a pom

2005-11-12 Thread Wendy Smoak
On 11/12/05, Stephen Duncan [EMAIL PROTECTED] wrote: I believe you must do optionaltrue/optional rather than just optional/ Thank you! Now, what's the correct way to keep the servlet API .jar files out of my webapp? They're not optional for the dependencies that need them (Struts Core for

Re: [m2] Need help fixing dependencies in a pom

2005-11-12 Thread Jason van Zyl
On Sat, 2005-11-12 at 10:49 -0700, Wendy Smoak wrote: On 11/12/05, Stephen Duncan [EMAIL PROTECTED] wrote: I believe you must do optionaltrue/optional rather than just optional/ Thank you! Now, what's the correct way to keep the servlet API .jar files out of my webapp? They're not

Re: [m2] Need help fixing dependencies in a pom

2005-11-12 Thread Jorg Heymans
Wendy Smoak wrote: Is it scopecompile/scope or something else? scopeprovided/scope Jorg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[m2]Need help with antrun (ClassCastException)

2005-11-08 Thread KC Baltz
I'm getting a ClassCastException trying to execute my build.xml file. Can anyone figure out why? Embedded error: The following error occurred while executing this line: C:\copart\handheld\build.xml:12: java.lang.ClassCastException: org.apache.maven. artifact.manager.DefaultWagonManager My

Re: [m2]Need help with antrun (ClassCastException)

2005-11-08 Thread Brett Porter
You can't use the artifact tasks within antrun scripts (the bug is fixed in 2.0.1). - Brett On 11/9/05, KC Baltz [EMAIL PROTECTED] wrote: I'm getting a ClassCastException trying to execute my build.xml file. Can anyone figure out why? Embedded error: The following error occurred while

Re: postgoal function in M2 Need Help?

2005-10-28 Thread Edwin Punzalan
Try removing the phase element in your pom.xml... The plugin authors should have setup their plugins to be bound to a lifecycle phase so you need not put the phase element in the configuration part of the plugin. For example, if a plugin is bound to the generate-sources phase, then using

postgoal function in M2 Need Help?

2005-10-27 Thread raghurajan . x . gurunathanv
Hi I understand there is no pre/post goal things in M2, instead we have to do that in pom.xml plugin itself. But how do i do more than one for eg. My needs is 1. Before compile i have generate a ejb home/remoteinterface .java files. 2. Then do regular javac compile 3. Then do ejbc compile

Re: Need help to build Continuum for the first time

2005-10-26 Thread Emmanuel Venisse
Frank Zhao a écrit : I would like to do my best to make my contribution to the Continuum project. Please help me on building the Continuum. I have Ant, Maven 2 and Java 1.4 installed on my Linux machine. When I tried to build Continuum for the first time and here is the error I got: 1)

Need Help

2005-10-18 Thread raghurajan . x . gurunathanv
Hi All, I'm new to maven Can any one please give me some sample code for the following 1. How do we use clearcease with scm tag, i know it should be in format as shown below, but how do i give other information like in cvs sscm:cvs:pserver:@cvs.host.name:/cvsroot:module-version

Need Help, Please

2005-09-14 Thread Qin Ding
I am learning to use Maven. Following the tutorial on serverside.com (http://www.theserverside.com/articles/article.tss?l=MavenMagic), to setup the directory structure like the folloing: c:\sample-maven-project src/config /myapp.properties src/java

RE: Need Help, Please

2005-09-14 Thread Litton, Tom - CEPM
Users List Subject: Need Help, Please I am learning to use Maven. Following the tutorial on serverside.com (http://www.theserverside.com/articles/article.tss?l=MavenMagic), to setup the directory structure like the folloing: c:\sample-maven-project src/config

Re: Need Help, Please

2005-09-14 Thread John Casey
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 not entirely sure (my maven-1 is a bit rusty...), but try leaving off the '${basedir}/' prefix for sourceDirectory and unitTestSourceDirectory. HTH, john Qin Ding wrote: | I am learning to use Maven. Following the tutorial on serverside.com |

Re: Need Help, Please

2005-09-14 Thread Rob Dingwell
Tom.Litton @cepm-us.com 09/14/2005 02:54 PM Please respond to Maven Users List To: Maven Users List users@maven.apache.org cc: Subject:RE: Need Help, Please try droping the ${basedir}/ from the dirs. like: sourceDirectorysrc/java/sourceDirectory

RE: Need Help, Please

2005-09-14 Thread David Jackman
as the paths are the same everywhere. ..David.. -Original Message- From: Qin Ding [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 14, 2005 2:09 PM To: Maven Users List Subject: RE: Need Help, Please Tom: I erased the ${basedir} as you suggested, but I still got No java source

RE: Need Help, Please

2005-09-14 Thread Qin Ding
. David Jackman David.Jackman @fastsearch.com 09/14/2005 03:22 PM Please respond to Maven Users List To: Maven Users List users@maven.apache.org cc: Subject:RE: Need Help, Please It definitely isn't ${basedir}, and I

RE: Need Help, Please

2005-09-14 Thread Leck, William C \(Bill\)
directory to src and test; which is where you should also be executing maven from. Also restore ${basedir}. ${basedir} is equivalent to PWD. Bill -Original Message- From: Qin Ding [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 14, 2005 2:33 PM To: Maven Users List Subject: RE: Need Help

RE: Need Help, Please

2005-09-14 Thread Qin Ding
\(Bill\) wleck @avaya.com 09/14/2005 03:56 PM Please respond to Maven Users List To: Maven Users List users@maven.apache.org cc: Subject:RE: Need Help, Please Try adding -X to the maven command. You may want to direct that output to a file. -X is the debug

RE: Need Help, Please

2005-09-14 Thread Leck, William C \(Bill\)
To: Maven Users List Subject: RE: Need Help, Please The problem is I carelessly named my project.xml file as project.xml.xml. After I correct the file name, I got the following error: C:\My Projects\Sample-Maven-Projectmaven java:compile __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V

Need help with Artifact Type Handler and dist plugin.

2005-07-05 Thread Helck, Christopher
I have a maven.xml which tars up some special files and deploys them to my repository. I'm having problems with the deploy part because I'd like the files to be deployed to a distrubutions directory just as if I were using maven-dist-plugin. I'd like to use maven-dist-plugin's ArtifactTypeHandler

Re: Need help with struts dependency madness.

2005-05-18 Thread Joe Germuska
At 4:57 PM -0400 5/17/05, Helck, Christopher wrote: I am trying to set up maven to build a struts web application. The programmer who developed it used the jar files included in the binary release: things like common-beanutils.jar and jakarta-oro.jar. I would prefer to use versioned jar files that

Need help with struts dependency madness.

2005-05-17 Thread Helck, Christopher
I am trying to set up maven to build a struts web application. The programmer who developed it used the jar files included in the binary release: things like common-beanutils.jar and jakarta-oro.jar. I would prefer to use versioned jar files that I've grabbed from an official repository. I took a

I need help for to generate websphere xmi (ibm-ejb-bind.xmi) files using script for session bean

2005-02-08 Thread rajas kumar
Hai Maven Users, In our project we are using session beans only. I want to generate websphere xmi files through script. If any body work on this plz send references how to generate ibm-ejb-bind.xmi and ibm-ejb-ext.xmi using script. I have used maven-was5-plugin-1.2. I am able to

Need help with plugin: how to put a dependency jar file into a property.

2004-12-17 Thread Helck, Christopher
In an InstallShield plugin I'm writing I need to pass a jar file to an exec command line. The raw command looks something like: sab -cp:a UnixSymbolicLink-2004-dec-13.jar -build I'd like the user of the plugin to specify the jar file as a depenency and as a property that is passed to

Re: Need help with plugin: how to put a dependency jar file into a property.

2004-12-17 Thread Brett Porter
I'm guessing you already figured it out by the questions about getDependencyPath? loop through deps, grab those with ishield property set, concat onto a string which is passed as an arg to your exec. - Brett On Fri, 17 Dec 2004 12:39:22 -0500, Helck, Christopher [EMAIL PROTECTED] wrote: In

Re: Need help with upgrading a plugin

2004-10-29 Thread Ben Gidley
whenever you wish to upgrade to a newer plugin version, your older version will automatically be removed. -Original Message- From: Helck, Christopher [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 9:27 AM To: Maven Users List Subject: Need help

Need help with upgrading a plugin

2004-10-28 Thread Helck, Christopher
Note: This is a repost/rephrasing of an ealier question I sent out. Previous posts have led me to believe that I can upgrade a plugin by specifying the plugin in my POM. I've tried this and it partially works. The new plugin is downloaded and installed in my local repository, but Maven does not

RE: Need help with upgrading a plugin

2004-10-28 Thread Charles Daniels
. -Original Message- From: Helck, Christopher [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 9:27 AM To: Maven Users List Subject: Need help with upgrading a plugin Note: This is a repost/rephrasing of an ealier question I sent out. Previous posts have led me to believe that I

Re: Need help with upgrading a plugin

2004-10-28 Thread Brett Porter
: Helck, Christopher [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 9:27 AM To: Maven Users List Subject: Need help with upgrading a plugin Note: This is a repost/rephrasing of an ealier question I sent out. Previous posts have led me to believe that I can upgrade a plugin

Need help unsubscribing

2004-06-29 Thread Paterline, David L.
Hi - I have tried unsuccessfully several times to unsubscribe from the maven developers list (both via email and through the web site). I don't think my emails are getting through. Can anyone provide me with help in unsubscribing from this list? Thank you. - David L. Paterline Principal

Need help getting jcoverage to work

2003-12-10 Thread VLADIMIR TERZIC
i am using eclipse with maven and i get errors when i try to run jcoverage on my project. (i guess i should mention that i am able to run clover maven task just fine) i have my source in src/java and my test source code in src/test i don't have any jcoverage properties set and when i try to run

Need help getting jcoverage to work

2003-12-09 Thread VLADIMIR TERZIC
i am using eclipse with maven and i get errors when i try to run jcoverage on my project. (i guess i should mention that i am able to run clover maven task just fine) i have my source in src/java and my test source code in src/test i don't have any jcoverage properties set and when i try to run

Re: Need help getting jcoverage to work

2003-12-09 Thread Gilles Dodinet
vlad, i am using eclipse as well and ive encountered some problem with jcoverage too. i cannot retell precisely what the symptoms were but from what i remember, the main issue was that the testcases were instrumented along with the application classes (and thus the stats were biased). im

Need Help: First day with Maven

2003-09-18 Thread Joshi, Yogesh (Cognizant)
Title: Need Help: First day with Maven Hi , This is my first day with Maven :) I am trying to use it for a very basic application, say, to make jar from a simple java class. I did the following: 1) Installed and set up Maven 2) D:\SampleMaven\com\src contains Test.java which I need

AW: Need Help: First day with Maven

2003-09-18 Thread Rademacher Tobias
It seems that you are behind a firewall, aren't you? http://maven.apache.org/faq.html#build-firewall -Ursprüngliche Nachricht- Von: Joshi, Yogesh (Cognizant) [mailto:[EMAIL PROTECTED] Gesendet am: Donnerstag, 18. September 2003 10:43 An: [EMAIL PROTECTED] Betreff: Need Help: First day

Re: Need Help: First day with Maven

2003-09-18 Thread dion
Are you behind a proxy? Do you have access to the internet from the machine running the build? -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Joshi, Yogesh (Cognizant) [EMAIL PROTECTED] wrote on 18/09/2003 06:43:03 PM: Hi , This is my first day with

Re: Need Help: First day with Maven

2003-09-18 Thread Andy Jefferson
This is my first day with Maven :) Welcome :-) I am trying to use it for a very basic application, say, to make jar from a simple java class. I did the following: 1) Installed and set up Maven 2) D:\SampleMaven\com\src contains Test.java which I need to include in Jar 3) Set up JAVA_HOME

RE: Need Help: First day with Maven

2003-09-18 Thread Joshi, Yogesh (Cognizant)
PROTECTED] Sent: Thursday, 18 September 2003 8:44 PM To: Maven Users List Subject: Re: Need Help: First day with Maven This is my first day with Maven :) Welcome :-) I am trying to use it for a very basic application, say, to make jar from a simple java class. I did the following: 1) Installed

AW: Need Help: First day with Maven

2003-09-18 Thread Rademacher Tobias
Hi Yogesh, \repository directory present under Maven installation is EMPTY and all the downloaded files are present under \User Documents and Settings\.Maven\repository directory. They are not downloaded under maven installation's repository directory. Am I missing some settings ?

RE: Need Help: First day with Maven

2003-09-18 Thread Joshi, Yogesh (Cognizant)
Hi , Maven is one level up to Ant in terms of Project Management capabilities. But I am not very clear how they are represented. Does it mean, it generates a consolidated report when I say maven site ? I tried this and I got the below mentioned Error. Attaching with this is my project.xml.

RE: Need Help: First day with Maven

2003-09-18 Thread dion
No source files and no packages have been specified. Total time: 26 seconds Do you have a package in your project.xml? -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Joshi, Yogesh (Cognizant) [EMAIL PROTECTED] wrote on 19/09/2003 01:31:58 AM: Hi

<    1   2   3   4