We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78628b9 commit d302ae8Copy full SHA for d302ae8
BotCommands-typesafe-messages/bc/build.gradle.kts
@@ -7,6 +7,8 @@ plugins {
7
id("publish-conventions")
8
}
9
10
+val byteBuddyAgent: Configuration by configurations.creating
11
+
12
dependencies {
13
// -------------------- CORE DEPENDENCIES --------------------
14
@@ -20,6 +22,7 @@ dependencies {
20
22
21
23
// JUnit + Mockk + Logback
24
testImplementation(projects.testCommons)
25
+ byteBuddyAgent(libs.bytebuddy.agent) { isTransitive = false }
26
27
28
setMainJvmTarget(target = 24)
@@ -32,6 +35,8 @@ kotlin {
32
35
33
36
tasks.withType<Test> {
34
37
useJUnitPlatform()
38
39
+ jvmArgs("-javaagent:${byteBuddyAgent.asPath}")
40
41
42
publishedProjectEnvironment {
0 commit comments