17 lines
432 B
Groovy
17 lines
432 B
Groovy
muzzle {
|
|
pass {
|
|
group = 'io.dropwizard'
|
|
module = 'dropwizard-views'
|
|
versions = "(,)"
|
|
}
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
dependencies {
|
|
compileOnly group: 'io.dropwizard', name: 'dropwizard-views', version: '0.7.0'
|
|
|
|
testCompile group: 'io.dropwizard', name: 'dropwizard-views-freemarker', version: '0.7.0'
|
|
testCompile group: 'io.dropwizard', name: 'dropwizard-views-mustache', version: '0.7.0'
|
|
}
|