mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-04-05 07:16:22 +00:00
15 lines
351 B
Groovy
15 lines
351 B
Groovy
import org.gradle.jvm.tasks.Jar
|
|
|
|
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
tasks.named('jar', Jar).configure {
|
|
manifest.attributes(
|
|
'Agent-Class': 'art.arcane.iris.util.project.agent.Installer',
|
|
'Premain-Class': 'art.arcane.iris.util.project.agent.Installer',
|
|
'Can-Redefine-Classes': true,
|
|
'Can-Retransform-Classes': true
|
|
)
|
|
}
|