gradle-capsule-plugin icon indicating copy to clipboard operation
gradle-capsule-plugin copied to clipboard

A Gradle plugin for Capsule, the packaging and deployment tool for JVM apps.

Results 14 gradle-capsule-plugin issues
Sort by recently updated
recently updated
newest added

While using [kscript tool](https://github.com/holgerbrandl/kscript), I've got the error: ``` [kscript] Packaging script 'test' into standalone executable... [kscript] [ERROR] packaging of 'test' failed: Exit Code : 1Comand : bash -c cd...

Simple fix for #38

To get support for jdk 10

Starting with the work done by @vehovsky, I went through and made the changes needed to support Gradle 5. I did this while still using Java 1.8, just to keep...

The plugin fails when used with Gradle 5 with following exception: `Caused by: java.lang.NullPointerException: Gradle does not allow passing null for the configuration action for CopySpec.from(). at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:906) at org.gradle.api.internal.file.copy.DefaultCopySpec.from(DefaultCopySpec.java:132)...

If I have a dependency in my build.gradle file: ```kotlin dependencies { compile("com.example:library:+") } ``` I would expect it to be resolved to the most recent version at the time...

The latest release version of this plugin only supports Capsule 1.0.1, and yet the repository has already been upgraded to Capsule 1.0.3. Can we have a new release please?

Most of the changes here are due to gradle upgrading its scripts/data.

I have the following task defined: ``` task fatCapsule(type: FatCapsule) { applicationClass 'com.test.MyClass' reallyExecutable classifier null } ``` My expectation was that the regular jar file produced by assemble would...

The plugin fails to load into Gradle 3.x with an error: > Unable to load class us.kirchmeier.capsule.task.FatCapsule due to missing dependency org/gradle/api/internal/DynamicObject According to [this post](https://discuss.gradle.org/t/missing-dependency-org-gradle-api-internal-dynamicobject-prevents-extending-plugin-task/19472), Gradle 3 introduced a...

bug