Advertisement
Guest User

Untitled

a guest
Mar 11th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.41 KB | None | 0 0
  1. group 'secondproject'
  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="secondproject.SportDayApp"
  18.  
  19. jar {
  20.     manifest {
  21.         attributes 'Main-Class': mainClassName
  22.     }
  23. }
  24.  
  25. run {
  26.     standardInput = System.in
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement