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

Gradle Sub Transitive Dependency Exclusion

I have three Gradle modules: ModA and ModB and ModC ModA has a dependency on ModB AND Spring Web MVC 3.2.6 ModB has a dependency on ModC ModC has a dependency on Spring Web MVC 4.1.5 I'm getting quite a few errors because ModA is pulling in and…
0
votes
2 answers

Disable transitive dependencies for everything expect compile project(...)

Is it possible to configure hibernate to only take transitive dependencies from a project I am relying on (compile("foobar")) and disable transitivity for everything else? That's what I tried so far: configurations.all { transitive =…
u6f6o
  • 2,050
  • 3
  • 29
  • 54
0
votes
0 answers

How do I prevent transitive dependencies from a test-scoped dependency from getting packaged in my WAR in Maven?

I’m using Maven 3.2.3. In my pom I have this test dependency org.mainco.subco core
Dave
  • 15,639
  • 133
  • 442
  • 830
0
votes
0 answers

Is it possible to workaround wrong transitive dependency in Maven?

We use JPod library in our program. Now I'm trying to switch it to Maven, so I added these lines to the pom.xml: de.intarsys.opensource jPod
user319799
0
votes
1 answer

Is "block on upstream builds transitive"?

I've looked through the Jenkins docs, and I can't find this answer. I'm played around with it, but my results seem to be somewhat inconsistent. Is the "block on upstream builds" option transitive? For example, suppose Project A triggers project B…
Paul Draper
  • 78,542
  • 46
  • 206
  • 285
0
votes
1 answer

transitive dependency defined in parent pom's dependency management

'Dependency1' transitively pulls 'dependency2' and I would like to manage 'dependency2' version in my project. what version of 'dependency2' will be pulled in by project if I have both 'dependency1' and 'dependency2'in dependency management section…
user1772643
  • 615
  • 3
  • 11
  • 23
0
votes
2 answers

Can an Android AAR have a dependency on another AAR when built with Maven?

This is very similar to Gradle for Android AAR Depending Upon AAR, Both In The Same Remote Repository?, but this question is Maven-specific. If I have an APK project (app) with a dependency on an AAR project (lib1), can lib1 have a dependency on…
Heath Borders
  • 30,998
  • 16
  • 147
  • 256
0
votes
1 answer

Specify Transitive Dependencies with Ivy

Ok, so say I have a module that all of my projects build on, "Module_A", I then have "Module_B" which builds on A and finally I have my top level project which depends on B and so also needs the appropriate version of A. Both Module A and B are…
Dan
  • 51
  • 1
  • 9
0
votes
2 answers

If an attribute is dependent on a composite of two attributes, then is this a functional dependency?

Transitive functional dependency is defined as: If A → B and B → C then A → C (Reference: This Tutorial!) If an attribute is dependent on a composite of two attributes ( i.e. A,B -> C), then is this a functional dependency? Can we consider this…
Solace
  • 8,612
  • 22
  • 95
  • 183
0
votes
2 answers

How to find who depends on specific artifact in gradle?

In our composite project someone depends on asm-4 and asm-3 transitively. I would like to know who bring these transitive dependencies to the project. Is there any way to draw a graph of dependencies or somehow find who depends on asm-3/asm-4 Note:…
Korniltsev Anatoly
  • 3,676
  • 2
  • 26
  • 37
0
votes
1 answer

Gradle does not add transitive dependencies to war's WEB-INF/lib folder

I have a web project that produces a war. The war adds a jar (another project of mine posted on an external repo) as compile dependency. This jar has its own compile dependency, which is listed in the jar's pom file, as well as in the project's…
Alek
  • 11
  • 4
0
votes
0 answers

Is it Necessary/Possible to Concatenate a Host and a Server IP Address when Connecting through from a Windows CE Device?

My Compact Framework / Windows CE app, running on a Motorola 3190 handheld device, needs to call a RESTful method in a Web API app. The handheld devices are connected to a host machine whose IP address can apparently be deduced via: IPAddress IPAddr…
0
votes
1 answer

Automatically download dependency's dependencies in Maven

I'm creating a library "A" that imports dependency "B". When I include library "A" in a project, I get a ClassNotFoundException if I also don't explicitly include dependency "B" in the project's pom. When importing dependency "A", is there a way to…
Mark
  • 67,098
  • 47
  • 117
  • 162
0
votes
1 answer

Identify the highest normal form of the relational table

This is a assignment from school. Here is the question. BranchCustomer(branch, customer, employee) The attributes of the relational table BranchCustomer satisfy the following sets of functional dependencies: • branch, customer >> employee • …
LouisL
  • 121
  • 1
  • 1
  • 11
0
votes
1 answer

Maven Dependency Hierarchy - Include or not to include

I have a project with submodules. Proj ProjA ProjB ProjC ProjA is dependent on ProjY which is dependent on ProjX. ProjA-->ProjY-->ProjX I am specifying ProjY dependency in ProjA. Should I include ProjX dependency in ProjA…
Kevin Rave
  • 13,876
  • 35
  • 109
  • 173
1 2 3
15
16