Questions tagged [transitive-dependency]

A transitive dependency refers to a code path or datasource which has an indirect dependency, such as an object, function, record, or file.

A transitive dependency requires implicit code or data to exist as a prerequisite to access itself.

References

238 questions
0
votes
1 answer

MySQL Transitive Dependency

I'm looking for the wide-ranging clarification of what the Transitive Dependency is. Please help me out. Thanks
Aaron
  • 1,969
  • 6
  • 27
  • 47
0
votes
1 answer

Combine resolutionStrategy with exclusion

I am using Gradle 6.5.1. I have added a custom resolutionStrategy to a build.gradle file - but now an exclusion like this is not being applied: testImplementation("com.example:foo-bar_2.12:$dependencies_version"){ exclude group:…
Robin Green
  • 32,079
  • 16
  • 104
  • 187
0
votes
1 answer

How to exclude a transitive dependency inside a transitive dependency?

I have a maven project "Project-1". This project uses some dependencies, let's consider jackson databind 2.9.8 Another maven project "Project-2" uses "Project-1" as a dependency. "Project-3" uses "Project-2" as a dependency. In the "Project-3", I…
Prabhakaran
  • 177
  • 1
  • 1
  • 11
0
votes
1 answer

Android Gradle remove transitive dependency

I have an Android Project with gradle config like that: MainApp: -dependOn-> Module T MainApp: -dependOn-> Module C Module C: -dependOn-> Module T Now, I don't need Module T anymore in MainApp, so I remove it from MainApp, but when I build the…
0
votes
1 answer

gradle constraints for transitive dependencies only

I want to make sure any transitive dependencies (ie dependency of my dependencies) are using the correct version without pulling in the dependency itself. For instance my project depends on B (and other dependencies) which depends on C. I want C to…
jbu
  • 15,831
  • 29
  • 82
  • 105
0
votes
1 answer

Dependency missing but exists in APK, how?

I have a MyLocationService library, which has dependency from huawei_location_service.Inside I have HMSLocationService class which is the only one using huawei_location_service classes and I use relfection to access that class. Meaning is, if we run…
Hayk Nahapetyan
  • 4,452
  • 8
  • 42
  • 61
0
votes
1 answer

Dealing with 3NF in terms of database domain modelling where attributes are added knowing they create transitive dependency

I am currently working on setting up a database domain model, where in terms of normalization I will be challenged due to transitive dependency. However, for this particular model it is a choice, that we choose to add such transitive dependency for…
NewDev90
  • 379
  • 2
  • 21
0
votes
1 answer

Graddle missing transitive dependency

I'm importing a dependency in my project that itself requires another one (com.discord4j). Gradle seems to be aware of this transitive dependency as shown by the output of gradle dependencies command below (discord4j is shown as required by…
0
votes
2 answers

Why does the use of dependencyManagement in maven usually not lead to problems?

I understand that dependencyManagement in Maven gives you great benefits in terms of avoiding different versions of dependencies in sub-poms and in using one (and only one) version of a dependency. At the same time, I am struggling to understand why…
user3058865
  • 460
  • 1
  • 4
  • 10
0
votes
1 answer

Bazel won't build files of dependent target

I have a Bazel rule that produces an output file, and can optionally take a dependency to a similar target, like so: load(":node.bzl", "node") node( name = "one", src = "one.txt", ) node( name = "two", src =…
Schmike
  • 121
  • 1
  • 6
0
votes
1 answer

VialerPJSIP PJSIP The 'Pods- ' target has transitive dependencies that include statically linked binaries:

I'm trying to install an objective-c Wrapper for Jsip 'VialerSIPLib' and use it in my Swift project here is my pod getting the error: The 'Pods- ' target has transitive dependencies that include statically linked binaries:…
0
votes
1 answer

In gradle dependencies, why API configurations discards all transitive dependencies?

I have a gradle project that contains 2 subprojects: common & demo. The common project depends on a published library: dependencies { implementation("eu.timepit:singleton-ops_${vs.scalaBinaryV}:0.5.0") ... The demo project depends on common as…
tribbloid
  • 4,026
  • 14
  • 64
  • 103
0
votes
0 answers

Multivalued Dependency transitivity property

I understand MVD complement and MVD Augmentation. However, it is difficult to understand MVD transitive dependency. For reference I have read https://en.m.wikipedia.org/wiki/Multivalued_dependency X =>=> Y and Y =>=> Z. How can we conclude X =>=>…
0
votes
2 answers

gradle prefix exclude dependencies

When developing Hadoop applications very quickly many sub-modules of the main Hadoop project are required. In order to force a specific version, I as the author of my own Hadoop job would love to change the version of Hadoop for transitive…
Georg Heiler
  • 16,916
  • 36
  • 162
  • 292
0
votes
1 answer

Maven pulling in an older version of a library

My project has dependency on a jar that depends on akka version 2.5.6. For some reason my project is pulling in an older version of akka 2.4.16. Output of mvn dependency:tree -Dverbose=true com.typesafe.akka:akka-actor_2.11:jar:2.4.16:compile…