Exclude fourth party dependency with classifier in gradle
0 my question is regarding the exclusion of a fourth party dependency using gradle. compile("org.nd4j:nd4j-native:123") exclude group: 'org.bytedeco.javacpp-presets', module: 'openblas' compile("org.bytedeco.javacpp-presets:openblas:123}:linux-x86_64") With this approach, it makes javacpp-presets a third-party instead of a fourth-party. So, would it be possible to exclude the different other native-platforms from nd4j-native using classifier in gradle (or by employing any gradle plugins)? gradle jar build.gradle share | improve this question asked Nov 12 '18 at 19:48 user2843283 24 4 add a comment | 0 my question is regarding the exclusion of a fourth party dependency using gradle. compile("org.nd4j:nd4j-native:123") exclude group: 'org.bytedeco.javacpp-presets', module: 'openblas' compile("org.bytedeco.javacpp-presets:openblas:123}:linux-x86_64"