19 lines
369 B
Groovy
19 lines
369 B
Groovy
plugins {
|
|
id("otel.javaagent-instrumentation")
|
|
}
|
|
|
|
muzzle {
|
|
pass {
|
|
group = 'io.dropwizard'
|
|
module = 'dropwizard-views'
|
|
versions = "(,)"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly "io.dropwizard:dropwizard-views:0.7.0"
|
|
|
|
testImplementation "io.dropwizard:dropwizard-views-freemarker:0.7.0"
|
|
testImplementation "io.dropwizard:dropwizard-views-mustache:0.7.0"
|
|
}
|