I want to use resource files from two jar files. Is it possible ?
build.gradle
sourceSets { main { resources { srcDir 'src/resources' files('libs/myOwnFile-1.jar:src/resources') //add another resource jar file } } } This means , I want to include resource files (mainly xml files) also from libs/myOwnFile-1.jar file. The jar is creating by other team but it's another project which cannot be linked with this project. But I know the path of resources (src/resources)
Is it possible to use src/resources under jar file ?