-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
71 lines (50 loc) · 1.91 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
group 'org.evapps.thegroup'
version '1.0'
apply plugin: 'java'
apply plugin: 'jetty'
apply plugin: 'application'
archivesBaseName = "app"
mainClassName = 'Main'
applicationName = 'app'
defaultTasks = ['stage']
task wrapper(type: Wrapper) {
gradleVersion = '2.7'
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
runtime "org.slf4j:slf4j-simple:1.7.12"
compile "com.heroku.sdk:heroku-jdbc:0.1.1"
// Sparkjava and FreeMarker
compile "com.sparkjava:spark-core:2.5"
compile 'com.sparkjava:spark-debug-tools:0.5'
compile group: 'com.sparkjava', name: 'spark-template-freemarker', version: '2.3'
//Slf4j Library -> Sparkjava extension
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.21'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.1'
compile group: 'commons-validator', name: 'commons-validator', version: '1.5.1'
// H2 Data Base
compile group: 'com.h2database', name: 'h2', version: '1.4.192'
// Jsoup
compile group: 'org.jsoup', name: 'jsoup', version: '1.9.2'
// ORM - Hibernate
compile "org.hibernate:hibernate-core:5.2.0.Final"
compile 'org.hibernate:hibernate-entitymanager:5.1.0.Final'
// J2HTML
compile group: 'com.j2html', name: 'j2html', version: '0.7'
//Google api
compile 'com.google.api-client:google-api-client:1.19.1'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '1.7.2'
//Json
compile group: 'org.json', name: 'json', version: '20090211'
compile group: 'commons-validator', name: 'commons-validator', version: '1.4.0'
compile group: 'eu.bitwalker', name: 'UserAgentUtils', version: '1.20'
//Gson
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1'
}
task stage {
dependsOn installDist
}