I have an eclipse setup with the following directory structure
and some subdirectories in those folders.
I need build.gradle to copy the entire layout of /native
to
/org/sqlite/native
in the jar
how do I configure that?
Here you can find a demo. Basically what you in the build.gradle script is the following piece of code:
apply plugin: 'java'
jar {
from('native') {
into('org/sqlite/native')
}
}