-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
43 lines (30 loc) · 1.21 KB
/
build.gradle
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
apply plugin: 'docker-compose'
apply plugin: 'com.google.protobuf'
archivesBaseName = "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.21.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:$scalaVersionFull"
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"
}