blob: b7ab6bee418f526ac7d0dfdf6165ed128722dd15 [file] [log] [blame]
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
}
test {
useJUnitPlatform()
}
jar {
manifest {
attributes 'Main-Class': 'org.jdesktop.swinghelper.debug.Tests'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}