forked from Vinge1718/java-todo
-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (22 loc) · 692 Bytes
/
build.gradle
File metadata and controls
29 lines (22 loc) · 692 Bytes
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
plugins {
id 'java'
id 'application'
}
group 'to-do.list'
version '1.0-SNAPSHOT'
applicationName = "todo"
mainClassName = 'App'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation "com.sparkjava:spark-core:2.6.0"
implementation "com.sparkjava:spark-template-handlebars:2.5.5"
implementation 'org.slf4j:slf4j-simple:1.7.21'
implementation 'org.sql2o:sql2o:1.5.4'
implementation group: 'com.h2database', name: 'h2', version: '1.4.191'
}
task stage(dependsOn: ['clean', 'installDist'])