From 4600b28e6b1b3a42475f2fb38641e19c35caa5d4 Mon Sep 17 00:00:00 2001 From: Emux Date: Sat, 15 Mar 2025 16:21:05 +0200 Subject: [PATCH] Update samples --- vtm-playground/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vtm-playground/build.gradle b/vtm-playground/build.gradle index 183cbf1fd..ddea53f87 100644 --- a/vtm-playground/build.gradle +++ b/vtm-playground/build.gradle @@ -24,7 +24,6 @@ sourceSets { } application { - mainClass = "org.oscim.test.MapsforgeTest" run { if (project.hasProperty("args")) { args project.getProperty("args").split(",") @@ -36,8 +35,9 @@ application { from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } } exclude 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/services/io.jeo.data.Driver' manifest { - attributes 'Main-Class': "${mainClass}" + attributes 'Main-Class': 'org.oscim.test.MapsforgeTest' } + duplicatesStrategy DuplicatesStrategy.INCLUDE with jar } }