gradle-one-jar icon indicating copy to clipboard operation
gradle-one-jar copied to clipboard

The gradle-one-jar project is a Gradle plugin that uses One-JAR, a specialised Class-Loader written by Simon Tuffs (http://one-jar.sourceforge.net/), for building self-contained executable jars that i...

Results 19 gradle-one-jar issues
Sort by recently updated
recently updated
newest added

Please add documentation as to how to create multiple tasks that create multiple one-jar archives. It's very unclear how to do that.

Would be nice to have the gradle-one-jar plugin available at plugins.gradle.org See: https://plugins.gradle.org/docs/submit Because the `plugins { id '...' version '...' }` seems to be the "new" way to load...

With this code: ``` task oneJar(type: OneJar){ manifest { attributes "myKey": "myValue"} } ``` Using 1.0.4 version of the onejar plugin. Running the build with Gradle 2.9 (this worked in...

Hi, When trying to use the plugin with Gradle 2.4, I'm facing two issues: - https://discuss.gradle.org/t/output-files-resolution-with-2-4/9495/1 - StackOverflowError when setting a custom manifest (see here for a test https://github.com/youribonnaffe/gradle-one-jar-2.4/tree/manifest, gradle...

I was having a hard time getting my project to run correctly when built with this plugin, in particular I could not get log4j initialized correctly. I noticed the following...

When you have a dependency on a 3rd party product (say, spring-core), and you change from 3.1.1 to 4.0.5, for example, the output OneJar contains both spring-core-3.1.1.jar and spring-core-4.0.5.jar. This...

Small thing. Not sure what the gradle-recommended behavior is here. ``` groovy task oneJar(type: OneJar) { doLast { outputs.files.forEach{ printf('exists: %s, path: %s%n', it.exists(), it.absolutePath) } } } ``` includes...

bug

LWJGL needs natives. So I got them and added binLib=files("/libs/native/windows") to gradle.build in task, but lwjgl crashes on launch that natives are missing. When I put run config run {...

Figure out a good way to integrate Gradle plugin project testing to capture edge cases and build inconsistencies.

enhancement