How can i separate jni____.dll/so
from jar file when gradle build?
#567
-
I'm building a multi gradle project.
When i execute gradle command "gradlew sub_project_1:jar" and "gradlew sub_project_1:javacppJar". generated two jar files.
but, When i execute gradle command "gradlew sub_project_2:jar" and "gradlew sub_project_2:javacppJar", generated two jar files.
I want |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
This is about Gradle JavaCPP? We can set the extension with the javacppPlatformExtension project property, which is missing from this list: |
Beta Was this translation helpful? Give feedback.
This is about Gradle JavaCPP? We can set the extension with the javacppPlatformExtension project property, which is missing from this list:
https://github.com/bytedeco/gradle-javacpp/blob/master/src/main/java/org/bytedeco/gradle/javacpp/BuildPlugin.java#L43