2020-11-17 17:39:43 -05:00
|
|
|
description = 'Integration for Micrometer metrics into Hibernate as a metrics collection package'
|
|
|
|
|
|
|
|
apply from: rootProject.file( 'gradle/published-java-module.gradle' )
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-14 15:59:59 -04:00
|
|
|
implementation project( ':hibernate-core' )
|
2022-04-22 19:40:06 -04:00
|
|
|
implementation "io.micrometer:micrometer-core:1.6.1"
|
2020-11-17 17:39:43 -05:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project( ':hibernate-testing' )
|
|
|
|
|
|
|
|
testAnnotationProcessor project( ':hibernate-jpamodelgen' )
|
2020-11-17 17:39:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
// resources inherently exclude sources
|
|
|
|
test {
|
|
|
|
resources {
|
|
|
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|