fuckForSendPackAgent/build.gradle
2025-06-15 22:44:43 +08:00

31 lines
625 B
Groovy

plugins {
id 'java'
}
group = 'com.yourdomain'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'net.bytebuddy:byte-buddy:1.14.10'
implementation 'net.bytebuddy:byte-buddy-agent:1.14.10'
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes(
'Premain-Class': 'com.yourdomain.agent.CheckrpAgent',
'Can-Redefine-Classes': 'true',
'Can-Retransform-Classes': 'true'
)
}
}