-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (32 loc) · 1.25 KB
/
Copy pathbuild.gradle
File metadata and controls
45 lines (32 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
apply plugin: 'docker-compose'
apply plugin: 'com.google.protobuf'
tasks.jar.configure {
archiveBaseName.set("rabbitmq-client-core_$scalaVersion")
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:$protobufVersion"
}
}
dockerCompose.isRequiredBy(test)
test.doFirst {
dockerCompose.exposeAsSystemProperties(test)
}
dependencies {
api project(":api")
api "com.avast.metrics:metrics-cats-effect-2_$scalaVersion:${metricsVersion}"
api "org.typelevel:log4cats-slf4j_$scalaVersion:1.4.0"
api "com.avast.bytes:bytes-core:${bytesVersion}"
api 'com.rabbitmq:amqp-client:5.26.0'
api "org.typelevel:cats-core_$scalaVersion:$catsVersion"
api "org.typelevel:cats-effect_$scalaVersion:$catsEffectVersion"
api 'org.xbib:jsr-305:1.0.0'
api "org.scala-lang:scala-reflect:$scalaLibraryVersion"
testImplementation project(":extras")
testImplementation project(":extras-circe")
testImplementation project(":extras")
testImplementation project(":pureconfig")
testImplementation "io.circe:circe-generic_$scalaVersion:$circeVersion"
testImplementation "io.circe:circe-generic-extras_$scalaVersion:$circeVersion"
testImplementation "com.google.protobuf:protobuf-java:$protobufVersion"
}