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

SML: Scan a relation list to get all the transitive associations

I have an environment list which keeps associations between variables and values, such as env = [("x", 1), ("y", 2), ("z", 3), ...]. I also have another substitution list (which is returned by a pattern matching control function) that keeps…
Dree
  • 702
  • 9
  • 29
0
votes
1 answer

How to manage required, conflicting Java dependencies

Say I need (its required) to use fizz-1.0.jar and buzz-2.3.2.jar in my Java project. Now, fizz-1.0.jar depends on foo-0.1.35.jar, and buzz-2.3.2.jar depends on foo-4.2.17.jar. foo-0.1.35.jar contains a Widget class like so: public class Widget { …
user1768830
0
votes
1 answer

In Maven how to say "Bring in B instead of A"?

I have a project that has N dependencies that all have a dependency on some library A (say commons-logging) and I want to use some other library B (say jcl-over-slf4j, which is billed as a replacement for commons-logging) as a substitute for that…
Nathan Hughes
  • 94,330
  • 19
  • 181
  • 276
0
votes
1 answer

maven transitive dependencies lost in jetty:run

I have a largish project that needs to be usable either with a command-line interface or through a web-app. The core server is deployed as 10 separate jars. The web-app is currently deployed as a .war, but that is a huge file that duplicates all the…
GrampaJohn
  • 617
  • 6
  • 10
0
votes
1 answer

Ivy not resolving transitive dependencies from public maven repos

Considering the following ivy dependencies,
Blessed Geek
  • 21,058
  • 23
  • 106
  • 176
0
votes
1 answer

Transitive dependencies unresolved at runtime in eclipse wtp

I am facing an issue while running a Dynamic Web Project in Eclipse. I have created a Maven Project (archtype - webapp) and then added DWP behaviour in it by adding maven-eclipse-plugin (version 2.9). The I added my project dependencies in POM file…
0
votes
1 answer

Normalization - IDENTYFING Transitive Dependencies

I am having trouble identifying transitive dependencies. I understand the concept behind it but looking at them and pulling them out is where I have my problems. So I know A → B It is not the case that B → A B → C Then A → C is a transitive…
-1
votes
1 answer

How to find all paths recursively from relational table in SQL Server using transitive property?

I would like to be able to recursively find all relationships in a table. I have a relational table, and essentially I would like to apply the transitive property (i.e. if A~B, B~C => A~C), and with the newly found relationship(s), I would like to…
-1
votes
2 answers

How to solve algorithmic questions with transitive dependencies/graphs?

I kind of struggle when I get asked these questions in interviews. Say for example, I have a question where I need to find the converted currency amount from one currency to another and I am given the list of currencies. How do I build the…
-1
votes
1 answer

Transitive dependency jars are not resolved from maven nexus repository

I created my own maven project (project 1) where I have added dependencies like junit, spring, etc. and deployed the jar (name it as jar1 ) in my nexus maven repository. Now when I add jar1 as dependency to my new project 2, only jar1 is getting…
-1
votes
1 answer

How to resolve properly transitive dependencies of Tika in Fuse (camel) bundle?

I'm trying to implement Tika functionality in a Fuse (6.3) project. In the last current version 1.16 Tika offers Osgi bundle with parsers. I can't achieve the proper osgi way to include Tika in my project. Any hint how can I have to create the…
-1
votes
1 answer

Normalization Exercise help convert to 1NF in Excel or Access

Can someone please help me normalize this table. I'm having trouble recognizing my partial and transitive dependencies. I understand the concept of everything ( at least I think so) but I'm having issues applying it.
1 2 3
15
16