Importing ant build.xml in Eclipse

103,522

Solution 1

From this link:

  1. Open Eclipse, select File > New > Project
  2. Select "Java Project from Existing Ant Build File"
  3. Show your build file and write a project name

Solution 2

just simply import "existing projects into workspace" and import your project. then open 'ant' window from windows-->show/view --> ant

drag-drop your ant file from project explorer to the ant window.

click to expand, and select the target you want to run ->right click -> run as ANT

your setup should be ok with this.

Solution 3

Try the following method, got it work for me.

  1. Make sure you have ant installed
  2. Create new project> android project > choose from exisiting source (your project source)
  3. Download ant-contrib.jar, then unzip it and put the jar file to where you prefer.
  4. Add the ant-contrib jar file to Eclipse: Window>Preferences>Ant>Runtime>Global Entries>Add external jar
  5. Configure your build.properties. (copy and edit build.properties.example to build.properties)
  6. Now open build.xml in editor in Eclipse then hit Run
  7. Add the built jar files in your project properties, Project Properties>Java Build Path>Add JAR
Share:
103,522
Suresh
Author by

Suresh

Updated on July 05, 2022

Comments

  • Suresh
    Suresh almost 2 years

    I have an android project that uses ant to build, is it possible to import this ant project in eclipse IDE?

    update : There is an option to create project using ant build.xml in eclipse File->New->Project->Java->Java project from existing ant Buildfile. and if the build.xml file is selected it show error Specified buildfile does not contain a javac task

    I guess javac is declared in this task

    <taskdef name="setup"
    classname="com.android.ant.SetupTask"
    classpathref="android.antlibs"/>
    
  • sheetal
    sheetal over 11 years
    i m not getting build.properties in my project...what should i do
  • Withheld
    Withheld over 11 years
    +1 for introducing the technique of dragging & dropping the ANT file from Project Explorer to the Ant view.
  • mmdemirbas
    mmdemirbas about 11 years
    Dear downvoter, please explain my fault to help me to improve my answer.
  • mmdemirbas
    mmdemirbas over 10 years
    Is the error related to 3 steps defined above? As you see, the steps are very straightforward and I am not getting any errors.
  • Richard Jessop
    Richard Jessop over 4 years
    The link continues to be broken. Please consider fixing it.
  • mmdemirbas
    mmdemirbas over 4 years
    Broken link fixed.