2024-02-28 16:57:26 -06:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
}
|
2024-12-03 06:57:43 +05:30
|
|
|
apply from: '../gradle/coverage/java-coverage.gradle'
|
2024-02-28 16:57:26 -06:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(':metadata-utils')
|
|
|
|
api project(':metadata-auth:auth-api')
|
|
|
|
|
2025-03-13 16:39:46 -05:00
|
|
|
// https://mvnrepository.com/artifact/nl.basjes.parse.useragent/yauaa
|
|
|
|
api 'nl.basjes.parse.useragent:yauaa:7.30.0'
|
|
|
|
|
2024-02-28 16:57:26 -06:00
|
|
|
implementation externalDependency.slf4jApi
|
2024-06-29 02:50:10 -05:00
|
|
|
implementation externalDependency.servletApi
|
|
|
|
implementation spec.product.pegasus.restliServer
|
2025-01-29 11:30:44 -06:00
|
|
|
implementation externalDependency.opentelemetryApi
|
|
|
|
implementation externalDependency.opentelemetrySdkTrace
|
2025-04-04 11:51:10 -03:00
|
|
|
implementation externalDependency.opentelemetrySdkMetrics
|
2024-02-28 16:57:26 -06:00
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
testImplementation externalDependency.testng
|
2025-01-29 11:30:44 -06:00
|
|
|
testImplementation externalDependency.mockitoInline
|
2024-02-28 16:57:26 -06:00
|
|
|
}
|