Reputation: 7514
I have checked out a open source java repository and imported it in IntelliJ. It uses ant for build purpose.
In build.xml I can see some dependencies mentioned. And 'ant' command runs successfully. But in code files, I see imports for those dependencies marked as red, meaning not available.
How to solve this?
Upvotes: 1
Views: 466
Reputation: 402235
IntelliJ IDEA doesn't support importing from Ant like it does for Maven, Gradle and SBT.
The only way is to add the jar dependencies manually.
Upvotes: 1