The build process in eclipse

How to run a specific build.xml target from eclipse. I am making some changes in my military project and using the sysdeo tomcat plugin in eclipse to start and stop services, but the problem is that now I want to call the build targets to reflect the new changes, and I have no idea what to do Thanks

+4
source share
1 answer

In the main menu β†’ Window β†’ Show View, select Ant; drag and create the build.xml file into ant -view. After that, you can execute ant -targets by double-clicking on them.

+5
source

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


All Articles