No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 619B

123456789101112131415161718192021222324252627282930313233343536
  1. plugins {
  2. id 'java'
  3. id 'application'
  4. id 'eclipse'
  5. }
  6. group 'jobshop'
  7. //version '0.1'
  8. sourceCompatibility = 8
  9. application {
  10. mainClassName = 'jobshop.Main'
  11. }
  12. repositories {
  13. mavenCentral()
  14. }
  15. dependencies {
  16. implementation 'net.sourceforge.argparse4j:argparse4j:0.8.1' // dependency for parsing command line arguments
  17. testCompile group: 'junit', name: 'junit', version: '4.12'
  18. }
  19. jar {
  20. manifest {
  21. attributes(
  22. 'Main-Class': 'jobshop.Main'
  23. )
  24. }
  25. from {
  26. configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
  27. }
  28. }