Reputation: 33
I am trying to create a project in eclipse from an existing ant build.xml file. I receive a list of javac tasks found and directed to select a single javac task to continue. How do I process the javac tasks?
Upvotes: 3
Views: 2303
Reputation: 1467
I wouldnt recommend going the Ant route at this stage as it complicates things. Maven would be the way to go in the end, or Gradle - but that's way out of the scope at this point. Eclipse doesn't need ant or a build.xml ant related file!
In Eclipse do the following
This should be the basic steps on getting a minimal Java or J2EE eclipse project started. Let me know in comments to this answer and I can modify it if need be to more correctly reflect what you're doing
Upvotes: 2