dropwizard-views.gradle 432 B

12345678910111213141516
  1. muzzle {
  2. pass {
  3. group = 'io.dropwizard'
  4. module = 'dropwizard-views'
  5. versions = "(,)"
  6. }
  7. }
  8. apply from: "${rootDir}/gradle/java.gradle"
  9. dependencies {
  10. compileOnly group: 'io.dropwizard', name: 'dropwizard-views', version: '0.7.0'
  11. testCompile group: 'io.dropwizard', name: 'dropwizard-views-freemarker', version: '0.7.0'
  12. testCompile group: 'io.dropwizard', name: 'dropwizard-views-mustache', version: '0.7.0'
  13. }