I have no idea about any building tool like Ant, Maven, or Gradle. This is first time I am starting with Gradle ( and have less time to understand it :( ). So this is a stupid question I have in my mind.
My initial steps with Gradle:
- I created a simple java program in eclipse.
- I added dependencies manually from project properties window.
- I explored src folder from command line and created build.gradle there.
- I executed a command "gradle build" which prompted me that build is successful.
Please tell me how these steps can help me not to add dependencies manually in eclipse.
(For one of the project I installed maven plugin in eclipse. So whenever I need to add some dependencies, I just run Maven clean/build. And I add rest dependencies manually. It automatically add dependencies to my development environment)