23 lines
588 B
Groovy
23 lines
588 B
Groovy
description = 'Integration for Micrometer metrics into Hibernate as a metrics collection package'
|
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
dependencies {
|
|
implementation project( ':hibernate-core' )
|
|
implementation libs.micrometer
|
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
|
|
testAnnotationProcessor project( ':hibernate-processor' )
|
|
testCompileOnly jakartaLibs.annotation
|
|
}
|
|
|
|
sourceSets {
|
|
// resources inherently exclude sources
|
|
test {
|
|
resources {
|
|
setSrcDirs( ['src/test/resources'] )
|
|
}
|
|
}
|
|
}
|