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
1
vote
1 answer

Maven Classloading Order

i have a question about the classloading order with maven. I know, since maven version 2.0.9 the classloading has been deterministic an uses the order in the pom. I am not clear about the transitive dependencies. Does maven load all top level…
sgalenski
  • 181
  • 1
  • 2
  • 8
1
vote
1 answer

Ivy can not resolve the scope of a dependency which is a dependency of a transitive dependency

I add a dependency(let's name it as A) to ivy.xml which has a pom file in maven central. Ivy uses ibiblio for resolving the maven dependencies. The dependency(A) which is added to ivy.xml has a transitive dependency(B). So far so good till here. The…
Talat
  • 68
  • 7
1
vote
0 answers

APK app project not pulling aar transitive deps

I have an android library project with this gradle build script: apply plugin: 'com.android.library' apply plugin: 'com.github.dcendents.android-maven' group 'com.test' version '0.0.1' android { compileSdkVersion 19 buildToolsVersion…
lostintranslation
  • 23,756
  • 50
  • 159
  • 262
1
vote
1 answer

Is there a maven plugin that will verify conflicting versions of transitive dependencies?

Is there a maven plugin that will verify conflicting versions of transitive dependencies, ensuring that I'm not depending on different versions of the same artifact? Ideally I would hook into the compile lifecycle, and it would fail the build if I'm…
Wouter Lievens
  • 4,019
  • 5
  • 41
  • 66
1
vote
1 answer

maven enforcer plugin flags dependencyConvergence error in transitive dependencies

The scenario: my project enables the maven-enforcer-plugin dependencyConvergence rule. It depends on a library that has corrected its own dependency convergence by using a dependencyManagement declaration, but it doesn't seem to affect the…
Zac Thompson
  • 12,401
  • 45
  • 57
1
vote
2 answers

Gradle multiproject optional subproject's transitive dependency should be resolved to an existing subproject

suppose the following project. the master project is a multi-project, however every part of the larger project can be developed individually or mixed in: /master/build.gradle /m1/build.gradle /m2/build.gradle /m3/build.gradle suppose m3 uses m2 and…
1
vote
1 answer

Transitive dependency involving more than 3 attributes

Given the following set of function dependencies A -> B B -> C B -/> A (B doesn't functionally determine A) if A->C exist, it is a transitive dependency What if we are given the following 2 situations, are they transitive dependency too?…
1
vote
2 answers

Is there a transitive dependency in the following functional dependencies

Let's say we have the following functional dependencies: A->B, B->C, C->B, and A->C Where the functional dependency A->C is explicit, i.e. you don't have to go through B to get to C from A. Is there a transitive dependency between A and C? If I was…
1
vote
1 answer

Maven exclusion not working

I am working on a project that has a dependency of JUnit 4.11 and a transitive dependency of JMock 2.6.0-RC2 who in turn has a dependency of JUnit-dep 4.4. This transitive dependency of JUnit-dep is overriding the setting in my local pom for JUnit.…
AnthonyW
  • 1,910
  • 5
  • 25
  • 46
1
vote
1 answer

Scheme based on functional dependencies

I've been trying to figure this out in my head but i'm really stuck and would appreciate some help. Given the scheme R(a,b,c,d) fd1: a->c fd2: b->d Would it be accurate to say that the key here would be {a,b} ? If that's true, then would it also be…
1
vote
1 answer

Gradle doesn't include transitive dependencies

I'm trying to use spring-test-mvc for testing a controller in my little application. Since I use gradle as build tool I added the dependency to it like this: testCompile 'org.springframework:spring-test-mvc:1.0.0.M1' It succeeds to retrieve…
Jens Schauder
  • 77,657
  • 34
  • 181
  • 348
0
votes
0 answers

Updating dependencies of my nuget package is a breaking change

When I create some nuget (N1) that uses other nugets (N2), I reference it with floating version (e.g. 3.). I do this so that whoever uses my nuget (N1) will get the latest minor of the dependencies (N2). Since the latest contains bug fixes but won't…
YanivR
  • 61
  • 5
0
votes
0 answers

Commands and triggers for updating transitive dependencies using yarn

I have a slight trouble understanding what are all possible yarn commands/triggers/situations that can lead to upgrading of transitive dependencies. Epecially I'm interested will yarn upgrade -E library-x -command also upgrade the transitive…
Vka
  • 321
  • 1
  • 7
  • 19
0
votes
0 answers

Maven not downloading dependency's dependencies mentioned in the pom of that dependency library

So, I created two standalone spring boot libraries for my personal project. The following screenshot is of that project, which adds those two libraries as dependencies - Libraries in the main project, screenshot taken from intellij Now, when I run…
0
votes
1 answer

feign client transitive dependency vulnerability issue apache commons fileupload 1.4 in gradle

In one of the project, I am using spring cloud starter openfeign 3.1.2 which is internally using apache commons fileupload 1.4. Blackduck is raising vulnerability issue with apache commons fileupload 1.4, so I need to use apache commons fileupload…