-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
81 lines (73 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8"
classpath "com.github.jengelman.gradle.plugins:shadow:4.0.2"
}
}
allprojects {
apply plugin: "idea"
apply plugin: "java"
apply plugin: "project-report"
apply plugin: "de.fuerstenau.buildconfig"
apply plugin: "com.github.johnrengelman.shadow"
version = "1.7"
ext {
gsonVersion = "2.8.1"
sparkVersion = "2.6.0"
sparkHandlebarsVersion = "2.5.5"
webbVersion = "1.3.1"
jedisVersion = "2.9.0"
slf4jSimpleVersion = "1.7.25"
annotationVersion = "15.0"
orgJsonVersion = "20180130"
sql2oVersion = "1.5.4"
postgresqlVersion = "42.2.2"
jbcryptVersion = "0.4"
cloudStorage = "1.51.0"
ffmpegCliVersion = "0.6.2"
junitVersion = "4.12"
thumbnailatorVersion = "0.4.8"
envKeystoreVersion = "1.0.7"
}
repositories {
maven {
url "https://dl.bintray.com/frozenironsoftware/Maven"
}
jcenter()
}
}
project(":server") {
dependencies {
compile "com.sparkjava:spark-core:$sparkVersion"
compile "com.sparkjava:spark-template-handlebars:$sparkHandlebarsVersion"
compile "redis.clients:jedis:$jedisVersion"
compile "com.google.code.gson:gson:$gsonVersion"
compile "com.goebl:david-webb:$webbVersion"
compile "org.slf4j:slf4j-simple:$slf4jSimpleVersion"
compile "org.jetbrains:annotations:$annotationVersion"
compile "org.json:json:$orgJsonVersion"
compile "org.sql2o:sql2o:$sql2oVersion"
compile "org.postgresql:postgresql:$postgresqlVersion"
compile "org.mindrot:jbcrypt:$jbcryptVersion"
compile "com.google.cloud:google-cloud-storage:$cloudStorage"
compile "com.heroku.sdk:env-keystore:$envKeystoreVersion"
}
}
project(":status") {
dependencies {
compile project(":server")
}
}
project(":bif") {
dependencies {
compile project(":server")
compile "net.bramp.ffmpeg:ffmpeg:$ffmpegCliVersion"
compile "net.coobird:thumbnailator:$thumbnailatorVersion"
testCompile "junit:junit:$junitVersion"
}
}