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
598 B
Groovy
Raw Permalink 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/relocated-published-java-module.gradle' )
2020-11-17 17:39:43 -05:00
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
}
}
}