-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
56 lines (49 loc) · 1.52 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins {
id 'play'
id 'play-coffeescript'
id 'idea'
}
def playVersion = "2.6.21"
def scalaVersion = System.getProperty("scala.binary.version", /* default = */ "2.11")
model {
components {
play {
platform play: playVersion, scala: scalaVersion, java: '1.8'
injectedRoutesGenerator = true
sources {
twirlTemplates {
defaultImports = TwirlImports.JAVA
}
}
}
}
}
dependencies {
play "com.typesafe.play:play-guice_$scalaVersion:$playVersion"
play "com.typesafe.play:play-logback_$scalaVersion:$playVersion"
play "com.typesafe.play:play-ahc-ws_$scalaVersion:$playVersion"
play "com.typesafe.play:filters-helpers_$scalaVersion:$playVersion"
play "com.typesafe.play:play-java-jpa_$scalaVersion:$playVersion"
play "mysql:mysql-connector-java:8.0.18"
play "org.hibernate:hibernate-core:5.3.1.Final"
play "com.h2database:h2:1.4.197"
playTest "org.awaitility:awaitility:2.0.0"
playTest "org.assertj:assertj-core:3.6.2"
playTest "org.mockito:mockito-core:2.1.0"
}
repositories {
jcenter()
maven {
name "gradle-javascript-public"
url "https://repo.gradle.org/gradle/javascript-public"
}
maven {
name "lightbend-maven-releases"
url "https://repo.lightbend.com/lightbend/maven-release"
}
ivy {
name "lightbend-ivy-release"
url "https://repo.lightbend.com/lightbend/ivy-releases"
layout "ivy"
}
}