Advertisement
Guest User

AHHHHH

a guest
Mar 11th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.51 KB | None | 0 0
  1. group 'assignment.sportsday' <example only, replace with your package names, (stuff after src/main/java)
  2. version "1.0-SNAPSHOT"
  3.  
  4. apply plugin: 'java'
  5. apply plugin: 'application'
  6.  
  7. sourceCompatibility = 1.8
  8.  
  9. repositories {
  10.     mavenCentral()
  11. }
  12.  
  13. dependencies {
  14.     testCompile group: 'junit', name: 'junit', version: '4.12'
  15. }
  16.  
  17. mainClassName="assignment.sportsday.core.Main" <example only, replace with your own main class>
  18.  
  19. jar {
  20.     manifest {
  21.         attributes 'Main-Class': mainClassName
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement