-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (30 loc) · 1.05 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
buildscript {
repositories {
jcenter()
maven { url "http://oss.jfrog.org/artifactory/repo" }
}
dependencies {
classpath "io.ratpack:ratpack-gradle:0.9.19-SNAPSHOT"
classpath "com.github.jengelman.gradle.plugins:shadow:1.2.1"
}
}
apply plugin: "io.ratpack.ratpack-groovy"
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: "idea"
repositories {
jcenter()
maven { url "http://oss.jfrog.org/artifactory/repo" }
}
dependencies {
// SpringLoaded enables runtime hot reloading.
// It is not part of the app runtime and is not shipped in the distribution.
springloaded "org.springframework:springloaded:1.2.3.RELEASE"
compile ratpack.dependency('session')
compile ratpack.dependency('pac4j')
compile "org.pac4j:pac4j-http:1.7.0"
compile "org.pac4j:pac4j-oauth:1.7.0"
// Default SLF4J binding. Note that this is a blocking implementation.
// See here for a non blocking appender http://logging.apache.org/log4j/2.x/manual/async.html
runtime 'org.slf4j:slf4j-simple:1.7.12'
testCompile "org.spockframework:spock-core:0.7-groovy-2.0"
}