-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (33 loc) · 872 Bytes
/
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
plugins {
id 'org.gradle.playframework' version '0.9'
}
test {
//maxParallelForks = 1
}
// repositories COPY-PASTED from PlayApp class
// which itself refers to: org.gradle.playframework.fixtures.Repositories.playRepositories
repositories {
jcenter()
maven {
name "lightbend-maven-release"
url "https://repo.lightbend.com/lightbend/maven-releases"
}
ivy {
name "lightbend-ivy-release"
url "https://repo.lightbend.com/lightbend/ivy-releases"
layout "ivy"
}
}
sourceSets {
main {
twirl {
defaultImports = org.gradle.playframework.sourcesets.TwirlImports.JAVA
srcDir "templates"
include "jva/**/*"
}
}
}
dependencies {
implementation "com.typesafe.play:play-guice_2.12:2.6.15"
implementation "ch.qos.logback:logback-classic:1.2.3"
}