Re: Add .classes to compilation classpath

2010-05-06 Thread German Rodriguez
commands, e-mail: users-h...@maven.apache.org -- View this message in context: http://old.nabble.com/Add-.classes-to-compilation-classpath-tp15824912p28474050.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Add .classes to compilation classpath

2008-03-17 Thread dynnamitt
seem to work. Any suggestions? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Add-.classes-to-compilation

Add .classes to compilation classpath

2008-03-04 Thread georges . ravel
Hi everybody, I'm new to maven. I have a simple question that I can't find an answer anywhere: I want to include additional classes in the classpath while compiling my project but I can't find any obvious solution for this. - The classes I want to include can not be installed in a maven

Re: Add .classes to compilation classpath

2008-03-04 Thread amit kumar
I had concept/misconception that target/classes gets added to the classpath by maven as default? Are you dealing with generated sources? Regards, Amit On Tue, Mar 4, 2008 at 4:34 PM, [EMAIL PROTECTED] wrote: Hi everybody, I'm new to maven. I have a simple question that I can't find an

Re: Add .classes to compilation classpath

2008-03-04 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] schrieb: Hi everybody, I'm new to maven. I have a simple question that I can't find an answer anywhere: I want to include additional classes in the classpath while compiling my project but I can't find any obvious solution for this. - The classes I want to include can

Re: Add .classes to compilation classpath

2008-03-04 Thread georges . ravel
Oh sorry, I meant to include some .class files from some other projects which are not maven projects and they can not be easily installed as maven packages. I think it would be possible to use ant plugin but it should be something much simpler I guess? Thanks Quoting amit kumar [EMAIL

Re: Add .classes to compilation classpath

2008-03-04 Thread amit kumar
Okay. Then you can jar up the classes as told by Simon and install/deploy(look for command mvn install:install-file... or mvn deploy:deploy-file...) them to your repository. There are few jar files which are not outcome of maven projects but yet we are using at out place. This seems to be the