Add compiled jar

This commit is contained in:
Joshua Sigona 2020-07-11 03:02:20 +09:00
parent 0fe9ca4a4f
commit efd3881b22

View File

@ -27,3 +27,12 @@ dependencies {
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}
jar {
manifest {
attributes(
'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
'Main-Class': 'HelloWorld.Library'
)
}
}