-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
30 lines (25 loc) · 968 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
apply plugin: 'java'
apply plugin: 'application'
group 'com.hairsalon.com'
version '1.0-SNAPSHOT'
archivesBaseName = "HairSalon"
version = '1.0'
applicationName = "HairSalon"
mainClassName = "App"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.sparkjava', name: 'spark-core', version: '2.3'
testCompile group: 'junit', name: 'junit', version: '4.+'
compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
compile 'com.sparkjava:spark-template-velocity:2.5.5'
compile group: 'org.slf4j', name : 'slf4j-api', version: '1.7.2'
compile group: 'org.sql2o', name: 'sql2o', version: '1.5.4'
compile group: 'org.postgresql', name: 'postgresql', version: "9.4-1201-jdbc41"
compile group: 'org.slf4j', name : 'slf4j-api', version: '1.7.2'
}
defaultTasks = ['clean']
task stage(dependsOn: ['clean', 'installDist'])