File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/main/kotlin/tech/httptoolkit/javaagent Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ configurations {
29
29
}
30
30
31
31
dependencies {
32
- implementation group : ' net.bytebuddy' , name : ' byte-buddy-dep' , version : ' 1.12.6 '
32
+ implementation group : ' net.bytebuddy' , name : ' byte-buddy-dep' , version : ' 1.12.19 '
33
33
// byte buddy contains references to jna classes and without them the r8Jar step fails
34
34
compileOnly group : ' net.java.dev.jna' , name : ' jna' , version : ' 5.8.0'
35
35
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import net.bytebuddy.utility.JavaModule
15
15
import java.lang.instrument.Instrumentation
16
16
import javax.net.ssl.SSLContext
17
17
import java.net.*
18
+ import java.security.ProtectionDomain
18
19
import javax.net.ssl.HttpsURLConnection
19
20
import javax.net.ssl.TrustManagerFactory
20
21
@@ -137,7 +138,8 @@ abstract class MatchingAgentTransformer(private val logger: TransformationLogger
137
138
builder : DynamicType .Builder <* >,
138
139
typeDescription : TypeDescription ,
139
140
classLoader : ClassLoader ? ,
140
- module : JavaModule ?
141
+ module : JavaModule ? ,
142
+ protectionDomain : ProtectionDomain ?
141
143
): DynamicType .Builder <* > {
142
144
logger.beforeTransformation(typeDescription)
143
145
You can’t perform that action at this time.
0 commit comments