Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a project which imports another projects to its build path. When I clean the project to compile classes, the classes imported from external projects are not showing up as part of the compiled classes directory.

Do anyone know how to make sure these external import classes gets compile and included into my build classes?

Thanks

share|improve this question

2 Answers

up vote 1 down vote accepted

I don't think it's possible. But when you deploy your project, you'll certainly want to create a jar file to hold all your classes. And Eclipse has a wizard to export a jar file and choose to embed dependencies in the jar.

The usual way, however, is to have each project generate its own jar, and to use all the jar of the project + the jars of the dependencies as the classpath of the deployed project.

share|improve this answer
I dont want to generate a jar file - I want the classes to appear on my compiled classes directory. – Bitmap Jul 13 '11 at 11:06
1  
If the two projects should have the same output directory, then they should be merged into a single project. This is how Eclipse projects work. Now you can use ant and copy all your classes where you want to. – JB Nizet Jul 13 '11 at 11:12

@Bitmap, is this a WAR or EAR project? In EAR project you have to specify clearly the "JAVA EE Module dependency" to include the referenced projects.

If you include a project as a build dependency, it will be for compile-time only.

If these are simple java projects you may want to look at "JAR JAR" enter link description here

to achieve this.

HTH

share|improve this answer
It is a standard java app. But I can convert it to EE if this will sort the issue. As posted on JB Nizet answer, all i want is to make sure the external classes imported show up at compiled classes directory. – Bitmap Jul 13 '11 at 11:08
Yes, convert it to an EE project, mark the dependent projects as java EE module dependency. Just to be clear what this will do is when you create a EE project, it will automatically add the dependent project as a jar module. Is this what you want? It will not show in the compiled directory, but the dependent project will be added as a .jar file. If this does not work try creating a new source folder inside the main project and reference (linked source in Eclipse) the source folder of the dependent project. See if that works. – Ayusman Jul 13 '11 at 11:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.