We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now this plugin applies the gradle jar as default jar input. When I have lots of jars need to be complied into dll. How can I do for that?
The text was updated successfully, but these errors were encountered:
As of today you can't. This plugin is (slightly) opinionated towards making a dll out of a java project.
It'd require some (not much) work which could be along the way of:
In your case you'd use IkvmBase task then.
Open for contribution on this one if you feel like hacking this plugin.
Sorry, something went wrong.
I do this
plugins { id 'com.github.johnrengelman.shadow' version '1.2.1' id "com.ullink.ikvm" version "2.3" } apply plugin:'ikvm' repositories { mavenLocal() mavenCentral() maven { url "http://oss.sonatype.org/content/repositories/snapshots" } maven { url "https://repository.apache.org/content/repositories/snapshots/" } } sourceCompatibility = 1.6 version = '1.0.3.0' shadowJar { baseName = 'myDLL' classifier = '' } jar { doLast { shadowJar.execute() } }
What is happening here:
No branches or pull requests
Now this plugin applies the gradle jar as default jar input. When I have lots of jars need to be complied into dll.
How can I do for that?
The text was updated successfully, but these errors were encountered: