Advertisement
Guest User

Outer build.gradle

a guest
Aug 30th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. subprojects {
  2. apply plugin: 'java'
  3. apply plugin: 'eclipse'
  4.  
  5. sourceCompatibility = 1.7
  6.  
  7. repositories {
  8.  
  9. mavenCentral()
  10.  
  11. maven {
  12. url "http://clojars.org/repo"
  13. }
  14. }
  15.  
  16. dependencies {
  17. testCompile 'junit:junit:4.8.2'
  18.  
  19. compile 'joda-time:joda-time:1.6'
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement