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
2
votes
1 answer

Eliminating Transitive Functional Dependencies

(Primary keys in bold.) In one of my lectures, we took the following schema R(a, b, c, d, e) a -> b e -> b c, d -> a c, d -> b c, d -> e and took it to 2NF as follows: R1(c, d, a, e) c, d - > a and e R2(a, e, b) (Not in 2NF) a -> b e -> b …
2
votes
1 answer

Excluding transitive dependency from Maven pom

I have a Maven dependency added where type is test-jar and scope is test. I want to remove a transitive dependency from this (because in the Nexus prod repo this dependency is missing which leads to Jenkins build failure). I have added a exclusion…
Saikat
  • 14,222
  • 20
  • 104
  • 125
2
votes
3 answers

How can I use (refer) transitive dependency's version?

I'm facing a situation that I need to specify one of transitive dependency's version. With following dependency tree, A <- B <- C I need to specify A's version in C's pom.xml Is there any way to do this? So that I can filter some file like…
Jin Kwon
  • 20,295
  • 14
  • 115
  • 184
2
votes
2 answers

AAR Library Transitive dependencies conflict?

I was working with an aar released on a local maven repository. Since I wanted to include the transitive dependencies, I added the transitiveattribute to my dependencies: compile ('com.mycompany.domain:artifact:1.0.0@aar') { transitive =…
gbaccetta
  • 4,449
  • 2
  • 20
  • 30
2
votes
0 answers

Transitive Dependency not working and android project won't run after being converted to maven

I am trying to use maven dependency management in my android project. I am using the below Eclipse Mars with ADT and M2Eclipse m2e-android plugin 1.6 maven 2.2.1 Mac OSX 10.10.4 I have a classes.jar package which i convert into a maven artifact…
Nishant Srivastava
  • 4,723
  • 2
  • 24
  • 35
2
votes
1 answer

How to debug artifact replacement in Maven

I have a parent project contains a dozen child projects, one of the child projects use org.apache.httpcomponents:httpclient:jar:4.3.5, which depends on org.apache.httpcomponents:httpcore:jar:4.3.2. However, the result version of httpcore is resolved…
ysl
  • 183
  • 2
  • 10
2
votes
0 answers

Set transitive dependencies for custom library

We are using nexus as local maven repository manager and adding our custom developed libraries there via web UI. Some of our custom developed libraries depends on other self developed libraries. If I add dependency to my pom I also want transitive…
ali
  • 145
  • 14
2
votes
1 answer

SPARQL Query Error with OPTION(TRANSITIVE) on Jena

I have the following Query PREFIX rdfs: SELECT ?type WHERE { { SELECT * WHERE { ?x rdfs:subClassOf ?type . } } OPTION (TRANSITIVE, t_distinct, t_in (?x), t_out…
alexandria
  • 105
  • 7
2
votes
1 answer

Maven transitive dependency confusion

If I include a library (e.g. mycompany.model.core-SNAPSHOT) within an application (e.g. my.company.app), and mycompany.model.core contains Hibernate as a dependency, can I reference Hibernate classes and functions within my.company.app WITHOUT…
Sam Levin
  • 3,326
  • 7
  • 30
  • 44
1
vote
1 answer

Maven Transitive Dependency issue

While building my project, there are two versions of org.bouncy-castle:bcprov required org.bouncy-castle:bcprov-jdk12 org.bouncy-castle:bcprov-jdk16 So while listing down the dependency I am getting the jdkversion12 Is there any way to…
1
vote
1 answer

Maven circular dependencies with multimodule project

I have a multi module project that keeps puzzling me. I have another 'war' project that imports this multi module pom project using pom but non of the transitive dependencies are included. Whenever I include the dependencies in the…
1
vote
0 answers

Create an aar from an android project that uses Google carboard sdk

I create my own android project to display a 360 picture with the recent version of google cardboard sdk(is a set of librairies) and when i am trying to create an aar from this project to use it as module in an other project I see that the classes…
1
vote
0 answers

Transitive dependence in Relational Database

I'm confused by the definition of transitive dependence in relational model of database. Codd's definition in his paper "Further normalization of the data base relational model" can be stated as follows: For three distinct collections A, B, C of…
opus26
  • 38
  • 7
1
vote
1 answer

bazel exclude transitive dependencies

How can I exclude a transitive dependencies just like Maven exclusions? In maven, we often use exclusions to exclude them. But I didn't find it in the bazel.
Jianwu Chen
  • 5,336
  • 3
  • 30
  • 35
1
vote
1 answer

How to check the precise version of a transitive dependency in .NETCore.App Framework

I have an app built on .NetCore v6.0.15. It is pulling some dependencies with the framework. I want to check the version of these packages on my system and compare it with the version that is documented on the Internet. I somehow feel that the…
S7H
  • 1,421
  • 1
  • 22
  • 37