@@ -25,7 +25,6 @@ tasks.getByName<JavaCompile>("compileJava") {
25
25
dependencies {
26
26
compileOnly(" org.apache.skywalking:apm-agent-core:$skywalkingAgentVersion " )
27
27
implementation(" io.vertx:vertx-tcp-eventbus-bridge:$vertxVersion " )
28
- implementation(" com.fasterxml.jackson.core:jackson-databind:$jacksonVersion " )
29
28
implementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jacksonVersion " )
30
29
implementation(" com.github.sourceplusplus.protocol:protocol:$projectVersion " ) {
31
30
isTransitive = false
@@ -41,10 +40,6 @@ dependencies {
41
40
testImplementation(" io.vertx:vertx-service-proxy:$vertxVersion " )
42
41
testImplementation(" io.vertx:vertx-service-discovery:$vertxVersion " )
43
42
testImplementation(" io.vertx:vertx-lang-kotlin-coroutines:$vertxVersion " )
44
- testImplementation(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jacksonVersion " )
45
- testImplementation(" com.fasterxml.jackson.datatype:jackson-datatype-jdk8:$jacksonVersion " )
46
- testImplementation(" com.fasterxml.jackson.datatype:jackson-datatype-guava:$jacksonVersion " )
47
- testImplementation(" com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion " )
48
43
}
49
44
50
45
tasks.getByName<Test >(" test" ) {
@@ -148,5 +143,8 @@ tasks.getByName<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar>("sha
148
143
relocate(" org.yaml" , " spp.probe.common.org.yaml" )
149
144
relocate(" io" , " spp.probe.common.io" )
150
145
relocate(" com.fasterxml" , " spp.probe.common.com.fasterxml" )
146
+
147
+ // need to move marshall package to allow probe to observe platform
148
+ relocate(" spp.protocol.marshall" , " spp.protocol" )
151
149
}
152
150
tasks.getByName(" jar" ).dependsOn(" shadowJar" )
0 commit comments