Guest User

Untitled

a guest
Sep 6th, 2013
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. // specify dependency exclusions here; for example, uncomment this to disable ehcache:
  2. // excludes 'ehcache'
  3. }
  4. log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
  5. checksums true // Whether to verify checksums on resolve
  6. legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility
  7. }
  8. repositories {
  9. inherits true // Whether to inherit repository definitions from plugins
  10.  
  11. grailsPlugins()
  12. grailsHome()
  13. grailsCentral()
  14.  
  15. mavenLocal()
  16. mavenCentral()
  17.  
  18. // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
  19. //mavenRepo "http://snapshots.repository.codehaus.org"
  20. //mavenRepo "http://repository.codehaus.org"
  21. //mavenRepo "http://download.java.net/maven/2/"
  22. //mavenRepo "http://repository.jboss.com/maven2/"
  23. }
  24.  
  25.  
  26. repositories {
  27. inherits true // Whether to inherit repository definitions from plugins
  28.  
  29. grailsPlugins()
  30. grailsHome()
  31. grailsCentral()
  32.  
  33. mavenLocal()
  34. mavenCentral()
  35.  
  36. // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
  37. //mavenRepo "http://snapshots.repository.codehaus.org"
  38. //mavenRepo "http://repository.codehaus.org"
  39. //mavenRepo "http://download.java.net/maven/2/"
  40. //mavenRepo "http://repository.jboss.com/maven2/"
  41. }
  42.  
  43. dependencies {
  44. // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.
  45.  
  46. // runtime 'mysql:mysql-connector-java:5.1.22'
  47. }
  48.  
  49. plugins {
  50. build ":tomcat:$grailsVersion"
  51. }
  52.  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment