aboutsummaryrefslogtreecommitdiff
path: root/testagent/build.gradle.kts
blob: cf7c15b8e5efc21a5ad1c5f64ac78867e3443a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
	java
	id("firmament.common")
	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,
	)
}