-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
27 lines (22 loc) · 879 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
apply plugin: 'java'
apply plugin: 'application'
version '1.0-SNAPSHOT'
archivesBaseName = "PatanishaOrgans"
applicationName = "PatanishaOrgans"
mainClassName = "App"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
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-simple', version: '1.7.21'
}
defaultTasks = ['clean']
task stage(dependsOn: ['clean', 'installDist'])