Advertisement
Guest User

Untitled

a guest
Oct 18th, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.69 KB | None | 0 0
  1. plugins {
  2.     id 'idea'
  3.     id 'play'
  4. }
  5.  
  6. version '1.0'
  7.  
  8. idea.module {
  9.     sourceDirs += file("app")
  10.     testSourceDirs += file("test")
  11.     scopes.COMPILE = [plus: [configurations.play], minus: []]
  12.     scopes.RUNTIME = [plus: [configurations.playRun], minus: [configurations.play]]
  13.     scopes.TEST = [plus: [configurations.playTest], minus: [configurations.playRun]]
  14. }
  15.  
  16. model {
  17.     components {
  18.         play {
  19.             platform play: '2.4.3', scala: '2.11'
  20.             injectedRoutesGenerator = true
  21.         }
  22.     }
  23. }
  24.  
  25. repositories {
  26.     mavenCentral()
  27.     maven {
  28.         name "typesafe-maven-release"
  29.         url "https://repo.typesafe.com/typesafe/maven-releases"
  30.     }
  31.     ivy {
  32.         url "https://repo.typesafe.com/typesafe/ivy-releases/"
  33.         layout "pattern", {
  34.             ivy "[organisation]/[module]/[revision]/ivys/ivy.xml"
  35.             artifact "[organisation]/[module]/[revision]/jars/[artifact].[ext]"
  36.         }
  37.     }
  38. }
  39.  
  40. dependencies {
  41.     play 'com.typesafe.play:play-java_2.11:2.4.3'
  42.     play 'com.typesafe.play:play-jdbc_2.11:2.4.3'
  43.     play 'com.typesafe.play:play-jdbc-evolutions_2.11:2.4.3'
  44.     play 'com.typesafe.play:play-cache_2.11:2.4.3'
  45.     play 'com.typesafe.play:play-ws_2.11:2.4.3'
  46.  
  47.     play 'org.avaje.ebeanorm:avaje-ebeanorm:6.9.1'
  48.  
  49.     play 'commons-lang:commons-lang:2.6'
  50.     play 'org.apache.commons:commons-math3:3.2'
  51.     play 'com.google.code.gson:gson:2.4'
  52.     play 'org.projectlombok:lombok:1.16.6'
  53.     play 'org.graphstream:gs-core:1.3'
  54.     play 'org.graphstream:gs-algo:1.3'
  55.     play 'postgresql:postgresql:9.1-901.jdbc4'
  56.     play 'com.google.inject:guice:3.0'
  57.     play 'javax.inject:javax.inject:1'
  58.  
  59.     play project(":data")
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement