Eclipse 3.7 launches automatic build before running ant task

My project β†’ List of builders is as follows:

  • Ant
  • Android Resource Manager
  • Android precompiler
  • Java builder
  • Android Package Manager

Build Automatically Disabled

If I run ant target from the ant view or as an external tool, then Eclipse does this:

  • He builds my project (he runs all the builders from the list of builders)
  • Fulfills the selected target.

If I remove ant from the list of builders, it will execute only the selected ant target (this is what I want).

How can I make Eclipse launch only the selected ant target without starting other builders and without removing ant builder from the list of builders?

+6
source share
2 answers
  • Go to Run> External Tools> External Tool Configurations ...
  • Select the Ant build configuration for your project.
  • Go to the assembly tab
  • Uncheck the box "Build before starting."
  • Click the Apply and Close buttons.
+7
source

You can disable the "build before running"

You have changed the settings for modifying resources, but I believe that you have

not turned off "Build before launch"

Window> Settings> Run / Debug> Build (if required) before starting

0
source

Source: https://habr.com/ru/post/901619/


All Articles