In my build script I have a separate dependencies{} section and a repositories {} section that does not live inside a buildscript{} section.
What is the code above doing that in the Usage: section there are two dependencies{} section and the 'repositories{} lives inside a buildscript{} section?
I am confused about this snippet of code in the usage section:
buildscript { repositories { mavenCentral() } dependencies { classpath 'no.entitas.gradle.jaxb:gradle-jaxb-plugin:2.0' } }
In my build script I have a separate dependencies{} section and a repositories {} section that does not live inside a buildscript{} section.
What is the code above doing that in the Usage: section there are two dependencies{} section and the 'repositories{} lives inside a buildscript{} section?