aspose file tools
The moose likes IDEs, Version Control and other tools and the fly likes project imported into eclipse which  is developed on intellij Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » IDEs, Version Control and other tools
Reply Bookmark "project imported into eclipse which  is developed on intellij" Watch "project imported into eclipse which  is developed on intellij" New topic
Author

project imported into eclipse which is developed on intellij

sheethal Kumar choppari
Greenhorn

Joined: Jun 23, 2012
Posts: 16
my application was developed on intellij, and i imported that into eclipse (from file system). how can i make it compatible with eclpse ,& make it run . can we do it by changing some config files ,like by changing build.xml files and build.bat files in my application . can anyone help me out with this

thanks in advance
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26193
    
  66

Go back to Intellij and export as Eclipse project. This will create the Eclipse specific .project and .classpath files.

If you no longer have access to Intellij, create a new Java project in Eclipse and add the require classpath entries via project properties build path. Then copy your code into that project.


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
sheethal Kumar choppari
Greenhorn

Joined: Jun 23, 2012
Posts: 16
thanks for reply . i have also done that, by adding all required libraries to project buildpath. even its still not compatible( i feel like i am missing one simple thing which can get it done). and i have been asked to modify build.xml files of my project to make it compatible with eclipse , can you give me any idea why and what all we need change in that build.xml
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35252
    
    7
build.xml -being an Ant build file- has nothing to do with any IDE you happen to be using; either it works or it doesn't work with Ant. Whether this or that IDE can make sense of it really shouldn't matter. If you're bent on tying yourself to any particular IDE for your build process, and that IDE forces you to make changes to your Ant build, then you're making a serious mistake, IMO.


Android appsImageJ pluginsJava web charts
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26193
    
  66

Ulf Dittmer wrote:build.xml -being an Ant build file- has nothing to do with any IDE you happen to be using;

Unless you are using NetBeans. In which case the config is the build file and often has IDE specific build.xml. And I agree that is a mistake.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: project imported into eclipse which is developed on intellij
 
Similar Threads
Intellij Idea to Eclipse
what is the difference between eclipse ganymede and galileo?
jar file creation eclipse
IntelliJ IDE
Piecing together an application using WSAD