stianh / gradle-jaxb-plugin

Gradle plugin for generating jaxb classes.
17 stars 11 forks source link

Question (2) about the usage section #25

Open jvsrvcs opened 10 years ago

jvsrvcs commented 10 years ago

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?