Advertisement
Guest User

Untitled

a guest
Aug 8th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.28 KB | None | 0 0
  1. plugins {
  2.     id 'java'
  3.     id 'application'
  4. }
  5.  
  6. group 'hello-gradle'
  7. version '1.0-SNAPSHOT'
  8.  
  9. sourceCompatibility = 1.8
  10.  
  11. repositories {
  12.     mavenCentral()
  13. }
  14.  
  15. application.mainClassName='Main'
  16.  
  17. dependencies {
  18.     testCompile group: 'junit', name: 'junit', version: '4.12'
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement