aboutsummaryrefslogtreecommitdiff
path: root/testagent/build.gradle.kts
blob: 73eb5837f3b993ff260b22591cae94aa66fd66e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
plugins {
	java
	id("com.gradleup.shadow")
}
dependencies {
	implementation(libs.asm)
}
tasks.withType<Jar> {
	val agentMain = "moe.nea.firmament.testagent.AgentMain"
	manifest.attributes(
		"Agent-Class" to agentMain,
		"Premain-Class" to agentMain,
	)
}