Hi Guys,
I have started learning cradle and this blog will help you getting familiar with gradle.
Gradle is a build tool where in you can have a project comprising of tasks.
Your build related details will be mentioned in build.gradle file .
By default the folder name is the rootProject name if you want to configure it change in settings.gradle file.
End.
You can specify the dependency in build.gradle as
If you want to use a repository you can use the repository to define it.
I have started learning cradle and this blog will help you getting familiar with gradle.
Gradle is a build tool where in you can have a project comprising of tasks.
Your build related details will be mentioned in build.gradle file .
By default the folder name is the rootProject name if you want to configure it change in settings.gradle file.
End.
rootProject=org.myProject
The project inside the root project will be the subProject .You can specify the dependency in build.gradle as
If you want to use a repository you can use the repository to define it.
repository {
maven{
maven{
url "http://testRepo.org"
}
}
}
No comments:
Post a Comment