mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-08 12:14:47 +00:00
872d9ef1f7
Signed-off-by: Jan Schatteman <jschatte@redhat.com>
23 lines
590 B
Groovy
23 lines
590 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-jpamodelgen' )
|
|
testCompileOnly jakartaLibs.annotation
|
|
}
|
|
|
|
sourceSets {
|
|
// resources inherently exclude sources
|
|
test {
|
|
resources {
|
|
setSrcDirs( ['src/test/resources'] )
|
|
}
|
|
}
|
|
}
|