Questions tagged [dependency-management]

The management of dependencies, for example third party libraries, that are used by a software project.

The management of dependencies, for example third party libraries, that are used by a software project. This handles storage and distribution of these dependency artifacts, as well as version management for them.

2928 questions
1
vote
1 answer

Gradle 'Implementation' Dependencies Are Runtime-Scoped When Project Has No Classes Of Its Own

I've got a Gradle multi-project build for a custom Spring Boot Starter. Following Spring Boot Starter convention, my classes are all in an 'autoconfiguration' project, and I have a separate 'starter' project that ONLY brings in the dependencies…
AForsberg
  • 1,074
  • 2
  • 13
  • 25
1
vote
1 answer

JointJS Dependency Management Issue

I'm using JointJS as a NPM package and it's working fine. My issue is with managing its dependencies. Right now, it created its own jquery folder inside its own node_modules folder. It's using that jQuery but I have jQuery as a "top level" folder…
Tachyon80
  • 147
  • 10
1
vote
1 answer

Dependency convergence coming from same Dependency- awssdk S3

While working with aws sdk v2 for java, i had encounter with some issues. i had included the DynamboDb and S3 dependencies and tried to run Maven install. the problem is that the same dependency- S3, tried to fetch different versions of…
1
vote
0 answers

How does a React project resolve React dependencies?

Usually when I try a React package from GitHub, I never bother checking the React version that the packages is using. I'm curious now; does it actually matter? Will there be any conflict between dependencies? Let's say there is a React package,…
Isaac
  • 12,042
  • 16
  • 52
  • 116
1
vote
1 answer

How to use go module as dependency in go dep project?

I have Go dep project. I want to use go module as dependency. For example. I need this one https://github.com/pion/webrtc. So, I try to declare the dependency like this, in Gopkg.toml: [[constraint]] name = "github.com/pion/webrtc" revision =…
Max
  • 1,803
  • 3
  • 25
  • 39
1
vote
1 answer

org.hamcrest isNotNullValue(): which to import when multiple dependencies coexist

I have a dependency coexistence here: isNotNullValue() method exists in different jars in my Spring Boot application and this picture shows what I get for now: As you can see, I…
WesternGun
  • 11,303
  • 6
  • 88
  • 157
1
vote
0 answers

Why does stripVersion not work on maven-dependency-plugin with mojo unpack-dependencies

Im trying to unpack dependencies with maven-dependency-plugin:unpack-dependencies. According to their docs, it should support stripVersion. Excerpt of my POM: org.apache.maven.plugins
lunatikz
  • 716
  • 1
  • 11
  • 27
1
vote
0 answers

pip could not resolve dependencies in requirement.txt

My requirments.txt read Cython pot I run pip install -r requirement.txt Collecting Cython (from -r requirements.txt (line 30)) Downloading…
sunxd
  • 743
  • 1
  • 9
  • 24
1
vote
1 answer

nmake fails when attempting to compile argon2_elixir

I'm trying to add argon2_elixir to my phoenix project, but I get this error when compiling: mix compile ==> argon2_elixir Microsoft (R) Program Maintenance Utility Version 14.00.24210.0 Copyright (C) Microsoft Corporation. All rights…
shini
  • 131
  • 15
1
vote
2 answers

Replace library imported by default Spark's classpath

I am currently working on a project in Spark 2.1.0 and I need to import a library on which Spark itself already depends. In particular, I want org.roaringbitmap:RoaringBitmap:0.7.42 to replace org.roaringbitmap:RoaringBitmap:0.5.11 (the library on…
w4bo
  • 855
  • 7
  • 14
1
vote
0 answers

Dep confuses the projects in vendor to that in GOPATH

I have projectA which imports packages from projectB. Both are existing in the GOPATH. I use dep for dependency management and projectB is added as a dependency in the Gopkg.toml of the projectA. If I clear this projectB from the vendor directory of…
gkns
  • 697
  • 2
  • 12
  • 32
1
vote
1 answer

Gradle dependency in library being shadowed by Spring Boot

The scenario. I write LibraryA which needs to use a newer version of a library (Caffeine in this case, and specifically v2.6.2). I will build and upload this artifact to our build artifactory LibraryA is intended to be used by other teams (unknown…
Vinay B
  • 673
  • 8
  • 21
1
vote
1 answer

How to install dependencies after automatic deployment from GitLab CI/CD

I'm taking a stab at doing an automatic deployment using GitLab's CI/CD. My project has a couple dependencies managed through Composer and I read somewhere that these dependencies (vendor directory) ideally should be added to the .gitignore file so…
1
vote
0 answers

Java dynamic dependencies

I am analyzing the dependencies of a large java project. I found jdeps for analyzing static dependencies. It is showing a large graph of dependencies. Many jars are not being found, though, for example the jdbc drivers, because they are loaded with…
Edu
  • 160
  • 10
1
vote
1 answer

auto cleanup maven project dependencies

I inherited a large codebase built with maven multi modules. I want to explicitly reference dependencies used in the source code itself, categorize by compile/test and delete dependencies that are not used at test/runtime. Is there a tool/plugin…
Alex
  • 8,518
  • 4
  • 28
  • 40
1 2 3
99
100