Add compiled jar

master
Joshua Sigona 4 years ago
parent 0fe9ca4a4f
commit efd3881b22
  1. 9
      build.gradle

@ -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'
)
}
}

Loading…
Cancel
Save