From 43ae59b3e5af1a80b7b3ca9ab76ef4f699ddbbd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wieland=20Sch=C3=B6bl?= Date: Wed, 2 Jun 2021 22:12:05 +0200 Subject: [PATCH] Fix main class --- .gitignore | 3 ++- build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8e92e19..c8396f3 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,5 @@ blog_state.json jobs_state.json *.hprof /build -/.gradle \ No newline at end of file +/.gradle +.idea/ \ No newline at end of file diff --git a/build.gradle b/build.gradle index b979c67..08e0a0c 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { } group 'org.wulkanat' -version '2.0.0' +version '2.0.1' repositories { mavenCentral() @@ -39,7 +39,7 @@ compileTestKotlin { jar { manifest { - attributes('Main-Class': 'org.wulkanat.MainKt') + attributes('Main-Class': 'org.hmcore.Main') } }