From 5fda57b76432010765f39c70def15507620b5799 Mon Sep 17 00:00:00 2001 From: Chal13W1zz Date: Sun, 31 Oct 2021 19:37:54 +0300 Subject: [PATCH 1/4] add a gitignore config file --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 16c4ba49..8bff32d0 100644 --- a/.gitignore +++ b/.gitignore @@ -40,11 +40,18 @@ Temporary Items # Package Files # *.jar *.war +*.nar *.ear +*.zip +*.tar.gz +*.rar # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* +# Log file +*.log + # Ignore Gradle GUI config gradle-app.setting From d4be77ab28dd5f7a3c82704f1498d5ed82dac3e1 Mon Sep 17 00:00:00 2001 From: Chal13W1zz Date: Sun, 31 Oct 2021 19:38:17 +0300 Subject: [PATCH 2/4] update dependencies --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 31a57c66..3da9dfb3 100644 --- a/build.gradle +++ b/build.gradle @@ -15,10 +15,10 @@ repositories { } dependencies { - testCompile group: 'junit', name: 'junit', version: '4.12' - compile "com.sparkjava:spark-core:2.6.0" - compile "com.sparkjava:spark-template-handlebars:2.5.5" - compile 'org.slf4j:slf4j-simple:1.7.21' - compile 'org.sql2o:sql2o:1.5.4' - compile group: 'com.h2database', name: 'h2', version: '1.4.191' + implementation 'com.sparkjava:spark-core:2.9.3' + implementation 'com.sparkjava:spark-template-handlebars:2.7.1' + implementation 'org.slf4j:slf4j-simple:1.7.32' + implementation 'org.sql2o:sql2o:1.6.0' + implementation group: 'com.h2database', name: 'h2', version: '1.4.191' + implementation 'junit:junit:4.13.1' } \ No newline at end of file From b9642d4d3248a48471881401afdcee1f1371e43f Mon Sep 17 00:00:00 2001 From: Chal13W1zz Date: Sun, 31 Oct 2021 19:39:05 +0300 Subject: [PATCH 3/4] fix a typo --- src/main/resources/templates/index.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/templates/index.hbs b/src/main/resources/templates/index.hbs index 25620813..02478f55 100644 --- a/src/main/resources/templates/index.hbs +++ b/src/main/resources/templates/index.hbs @@ -1,6 +1,6 @@ {{#partial "content"}} -

List o' stuff to do!

+

List of stuff to do!

{{#if tasks}} {{#each tasks }} From 31ac26813120bbf0d122d13372345e1c7af7bee3 Mon Sep 17 00:00:00 2001 From: Chalie Date: Mon, 4 Nov 2024 10:41:53 +0300 Subject: [PATCH 4/4] update dependencies --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 3da9dfb3..b191fc7b 100644 --- a/build.gradle +++ b/build.gradle @@ -15,10 +15,10 @@ repositories { } dependencies { - implementation 'com.sparkjava:spark-core:2.9.3' + implementation 'com.sparkjava:spark-core:2.9.4' implementation 'com.sparkjava:spark-template-handlebars:2.7.1' implementation 'org.slf4j:slf4j-simple:1.7.32' implementation 'org.sql2o:sql2o:1.6.0' - implementation group: 'com.h2database', name: 'h2', version: '1.4.191' + implementation group: 'com.h2database', name: 'h2', version: '2.2.220' implementation 'junit:junit:4.13.1' } \ No newline at end of file