build.gradle 964 B

1234567891011121314151617181920212223242526272829303132333435
  1. buildscript {
  2. repositories {
  3. jcenter()
  4. }
  5. dependencies {
  6. classpath "io.ratpack:ratpack-gradle:1.7.6"
  7. classpath "com.github.jengelman.gradle.plugins:shadow:5.0.0"
  8. }
  9. }
  10. apply plugin: "io.ratpack.ratpack-java"
  11. apply plugin: "com.github.johnrengelman.shadow"
  12. apply plugin: "idea"
  13. apply plugin: "eclipse"
  14. repositories {
  15. jcenter()
  16. }
  17. dependencies {
  18. compile 'io.ratpack:ratpack-guice:1.7.6'
  19. compile 'io.ratpack:ratpack-hikari:1.7.6'
  20. compile 'io.ratpack:ratpack-handlebars:1.7.6'
  21. compile 'io.ratpack:ratpack-rx2:1.7.6'
  22. compile 'io.reactiverse:reactive-pg-client:0.11.4'
  23. compile 'io.vertx:vertx-rx-java2:3.8.5'
  24. // Default SLF4J binding. Note that this is a blocking implementation.
  25. // See here for a non blocking appender http://logging.apache.org/log4j/2.x/manual/async.html
  26. runtime 'org.slf4j:slf4j-simple:1.7.30'
  27. runtime 'org.postgresql:postgresql:42.2.10'
  28. }
  29. mainClassName = "Main"