hibernate-orm/hibernate-micrometer/hibernate-micrometer.gradle

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
588 B
Groovy
Raw Normal View History

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 {
implementation project( ':hibernate-core' )
implementation libs.micrometer
2020-11-17 17:39:43 -05:00
testImplementation project( ':hibernate-testing' )
testAnnotationProcessor project( ':hibernate-processor' )
testCompileOnly jakartaLibs.annotation
2020-11-17 17:39:43 -05:00
}
sourceSets {
// resources inherently exclude sources
test {
resources {
setSrcDirs( ['src/test/resources'] )
2020-11-17 17:39:43 -05:00
}
}
}