I have installed an application, when I try to run it (it\'s an executable jar) nothing happens. When I run it from the commandline with:
java -jar \
The Gradle answer is to add a jar/manifest/attributes setting like this:
apply plugin: 'java' jar { manifest { attributes 'Main-Class': 'com.package.app.Class' } }