Chris
Chris

Reputation: 9529

Ant script build time vs. Eclipse build time

Exporting a project as a runnable jar takes approx 30sec to build, the (auto created) Ant script that does the same takes about 10 minutes to build.

What am I missing?

Upvotes: 0

Views: 494

Answers (1)

khmarbaise
khmarbaise

Reputation: 97487

If you create things from Eclipse all components are already compiled whereas if you do this via a ant script everything must be compiled from the scratch so i would expect differences in compile/build time.

Upvotes: 2

Related Questions