This repository was archived by the owner on Apr 23, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (48 loc) · 1.47 KB
/
Copy pathbuild.gradle
File metadata and controls
55 lines (48 loc) · 1.47 KB
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
plugins {
id 'play'
id 'play-coffeescript'
id 'idea'
}
def playVersion = "2.7.0"
def scalaVersion = System.getProperty("scala.binary.version", /* default = */ "2.12")
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 "org.hibernate:hibernate-core:5.4.0.Final"
play "com.h2database:h2:1.4.197"
playTest "org.awaitility:awaitility:3.1.5"
playTest "org.assertj:assertj-core:3.11.1"
playTest "org.mockito:mockito-core:2.23.4"
}
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"
}
}