File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ rxjava2_version=2.2.8
21
21
javafx_version =11.0.2
22
22
javafx_plugin_version =0.0.8
23
23
binary_compatibility_validator_version =0.2.2
24
+ blockhound_version =1.0.2.RELEASE
25
+ jna_version =5.5.0
24
26
25
27
# Android versions
26
28
android_version =4.1.1.4
Original file line number Diff line number Diff line change @@ -21,11 +21,12 @@ configurations {
21
21
dependencies {
22
22
compileOnly " junit:junit:$junit_version "
23
23
shadowDeps " net.bytebuddy:byte-buddy:$byte_buddy_version "
24
- compile " net.bytebuddy:byte-buddy-agent:$byte_buddy_version "
25
- compile ' io.projectreactor.tools:blockhound:1.0.2.RELEASE'
24
+ shadowDeps " net.bytebuddy:byte-buddy-agent:$byte_buddy_version "
25
+ compileOnly " io.projectreactor.tools:blockhound:$blockhound_version "
26
+ testCompile " io.projectreactor.tools:blockhound:$blockhound_version "
26
27
compile " org.jetbrains.kotlin:kotlin-reflect:$kotlin_version "
27
- runtime " net.java.dev.jna:jna:5.5.0 "
28
- runtime " net.java.dev.jna:jna-platform:5.5.0 "
28
+ runtime " net.java.dev.jna:jna:$j na_version "
29
+ runtime " net.java.dev.jna:jna-platform:$j na_version "
29
30
}
30
31
31
32
jar {
@@ -39,5 +40,7 @@ shadowJar {
39
40
classifier null
40
41
// Shadow only byte buddy, do not package kotlin stdlib
41
42
configurations = [project. configurations. shadowDeps]
42
- relocate ' net.bytebuddy' , ' kotlinx.coroutines.repackaged.net.bytebuddy'
43
+ relocate(' net.bytebuddy' , ' kotlinx.coroutines.repackaged.net.bytebuddy' ) {
44
+ exclude ' net.bytebuddy.agent'
45
+ }
43
46
}
You can’t perform that action at this time.
0 commit comments