The transitive-dependency tag has no wiki summary.
0
votes
1answer
26 views
In Maven is there a way 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 ...
1
vote
0answers
40 views
“Transitive” dynamic link in c++
Let's say I have a dynamic lib a.so.
Then I'm building b.so against a.so only if a.so is present on the machine.
Then I'm building executable c against b.so.
I was hoping to forget everything about ...
0
votes
2answers
110 views
maven - transitive dependencies [duplicate]
I am trying to follow best practices when defining data in pom.xml, so I started to look into the Spring source code, and I have seen:
<project xmlns="http://maven.apache.org/POM/4.0.0"
...
0
votes
1answer
81 views
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 ...
1
vote
1answer
31 views
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 ...
0
votes
0answers
110 views
How to get Ivy to resolve exact revision for transitive dependency?
I've setup an Ivy repository (2.3.0-rc1), and am attempting to install a particular version of Axis 2 into it--including transitive dependencies; when I run, I see a different version of the ...
0
votes
1answer
343 views
Ivy not resolving transitive dependencies from public maven repos
Considering the following ivy dependencies,
<dependency org="org.fusesource.restygwt" name="restygwt" rev="1.3"
conf="gwtcompile->default; compile->default"/>
<dependency ...
0
votes
0answers
223 views
Maven cannot resolve dependencies correctly while compiling?
I am using Maven-3.0.4 with JDK-1.6.33 on Linux box, and i have a project that cannot compile with mvn clean compile, maven reports that some packages are not defined. So i output the debug log with ...
0
votes
1answer
504 views
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 ...
2
votes
1answer
231 views
Transitive Dependency causing Conflicting version of same DLL
What is the best practice in the .NET world to manage transitive dependencies that cause version conflict ?
In details :
Project A Depends on Project B which in turn depends on library C
also
...
2
votes
1answer
119 views
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 ...
0
votes
1answer
278 views
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). ...
2
votes
2answers
138 views
Freezing transitive dependencies on maven release to get build fully reproducible
A problem that relates to basic maven concepts:
Once released I would like to have a guarantee that the project build is fully reproducible. So all project and plugin dependencies, including ...
0
votes
1answer
750 views
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 ...
1
vote
1answer
158 views
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 ...
10
votes
4answers
1k views
What is wrong with a transitive dependency?
I have some transitive dependencies in my database design. I have been told by my superiors that these can cause bugs. I am finding it difficult to find resources that will tell me how having these ...
0
votes
1answer
901 views
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
<type>pom</type> but non of the transitive dependencies ...
1
vote
2answers
488 views
Maven - transitive dependencies with different versions
lets assume my application needs foo.jar and bar.jar
foo.jar needs version 1.0 of c.jar
bar.jar needs version 2.0 of c.jar
How does Maven resolve this conflict? Which version of c.jar will be used?
...
2
votes
2answers
1k views
Maven project with native dependency and copying files
I have the following scenario:
mylib is a library (for which I have the sources, so I'd like to put them into a Maven project mylib:mylib for example). This library has a jar dependency for which I ...
2
votes
1answer
3k views
Trying to build an OSGi bundle in Maven with embedded dependencies. Can't seem to exclude transitive dependencies from BND classpath
Basically, my web service must be deployable as a single OSGi jar bundle. Therefore:
The bundle must contain all compile and runtime maven dependencies.
It must also contain all non-optional ...
1
vote
0answers
262 views
.NET Utilize Transitive Dependencies/References
I have a Visual Studio Solution with 3 projects:
MyWebSite (A)
BusinessModel (B)
Persistence (C)
Persistence, project C, depends on NHibernate and contains all of the repository interfaces, ...
0
votes
1answer
63 views
MySQL Transitive Dependency
I'm looking for the wide-ranging clarification of what the Transitive Dependency is. Please help me out. Thanks
8
votes
2answers
2k views
How does Maven resolve version conflicts of transitive dependencies ? nearest-wins strategy
I just finally got used to not having any Used undeclared or Unused declared dependencies in my projects. Although it is very hard to track Unused declared runtime/test dependencies that are listed in ...
6
votes
3answers
781 views
Transitively download a Maven artifact to the local repository
I am trying to download a specific artifact (and all of its dependencies) to a machine's local repository.
It would seem that using the dependency:get goal would be the best option for this, but ...