No main manifest attribute

You need to specify the Main-Class in the manifest of the jar file. Replace com.example.Main with your actual fully qualified class name:

jar {
    manifest {
        attributes 'Main-Class': 'com.example.Main'
    }
}