gradle-native-artifacts-plugin
gradle-native-artifacts-plugin copied to clipboard
Question: Artifact-only notation @nar
I notice you use the artifact-only notation (@nar):
dependencies {
compileLibA 'org.example.vendor:boost:1.55.+@nar'
compileTastyAppTest 'org.example.vendor:gtest:1.+@nar'
}
According to the Gradle user manual, this mean that the artifact will be downloaded without its dependencies. But your plugin documentation says that transitive dependencies will be downloaded, which seems contrary to the Gradle user guide. Can you explain please?
Thanks,