Advertisement
iSach

Untitled

Jan 30th, 2016
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. group 'be.isach'
  2. version '1.0-SNAPSHOT'
  3.  
  4. apply plugin: 'java'
  5. apply plugin: 'idea'
  6. apply plugin: 'eclipse'
  7.  
  8. sourceCompatibility = 1.5
  9.  
  10. repositories {
  11. mavenCentral()
  12. }
  13.  
  14. dependencies {
  15. testCompile group: 'junit', name: 'junit', version: '4.11'
  16. }
  17.  
  18. allprojects {
  19. apply plugin: 'idea'
  20. idea {
  21. module {
  22. inheritOutputDirs = true
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement