Want an eclipse java project to run ant build files automatically

前端 未结 4 2090
别那么骄傲
别那么骄傲 2020-11-28 07:31

I have an Eclipse Java project, not a plugin project. And the project has some external dependencies that I handle in two separate ant files. Everything works fine, but I wa

4条回答
  •  清歌不尽
    2020-11-28 07:33

    Step 1: Add the build file to your ant view

    Click the add button and select the build.xml file from the project. You can also drag the build.xml file onto the ant view (To add the ant view to your perpective, go to Window > Show View > Other…)

    Step 2: Run as Ant Build

    In your ant view, right click the newly added build file and select Run As > Ant Build… In the dialog window, select the ‘Hide internal targets not selected for execution’ option in the Targets tab. You can rename the builder in the box at the top of the window if you wish (I usually remove the trailing ‘build.xml’. Click Apply and Close.

    Step 3: Setup automatic build

    Right click on the project, select Properties, then Builders. Click Import. Before closing the screen, highlight the imported build and select edit. Go to the Targets tab select clean for ‘After a clean’ and deploy.local for ‘Auto build’. Apply the changes and close.

    Step 4: Enable Auto Build

    Go to Project > Build Automatically

    source: http://www.simonwhatley.co.uk/using-ant-with-eclipse

提交回复
热议问题