Fix main class

This commit is contained in:
Wieland Schöbl
2021-06-02 22:12:05 +02:00
parent 5511d1c5ac
commit 43ae59b3e5
2 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@@ -6,4 +6,5 @@ blog_state.json
jobs_state.json
*.hprof
/build
/.gradle
/.gradle
.idea/

View File

@@ -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')
}
}