dependency-management Questions
7
In a project/solution with lots of <PackageReference> dependencies, it can be difficult to find the source of a transitive dependency that's being pulled in. For example, no projects in my so...
Kahaleel asked 5/6, 2020 at 22:51
3
With pipenv, how do I add or update only one package without changing versions of other packages? I've tried both:
pipenv update --selective-upgrade requests
and
pipenv update --keep-outdated requ...
Cycloparaffin asked 9/4, 2019 at 12:12
4
Solved
Let's assume we would like to use boost::file_system library in our cmake multiplatform project (ios, macos, android, windows, linux). One way to do it is to directly copy boost source code into ou...
Himyaritic asked 8/7, 2022 at 14:57
1
Solved
Recently I installed the latest Visual Studio 2022 v17.10 to build my programs, and initially all went well. But after some other program installation, my programs started failing immediately on st...
Ermelindaermengarde asked 9/6 at 9:28
4
Solved
How do I install poetry in my image? (should I use pip?)
Which version of poetry should I use?
Do I need a virtual environment?
There are many examples and opinions in the wild which offer differen...
Viperish asked 1/6, 2022 at 16:45
20
Solved
How can I check whether Java is available (in the PATH or via JAVA_HOME) from a bash script and make sure the version is at least 1.5?
Octo asked 7/9, 2011 at 13:34
8
Solved
I would like to offer users of my composer package an interface to select and install any of the suggested packages. There seems to be no command line option, and in the API I can only find a getSu...
Halo asked 30/11, 2014 at 10:29
3
Solved
I've written an sbt plugin called sbt-jumi which implements sbt integration for Jumi. Right now the sbt-jumi plugin depends on the current Jumi release.
Here is the relevant line from the plugin's...
Giorgio asked 5/8, 2013 at 19:19
11
Solved
I am currently trying to migrate a Maven project to Gradle
In my Maven version I have the dependency versions all listed out like this in my parent pom:
<properties>
<spring.version>...
Brachycephalic asked 29/6, 2016 at 17:38
3
Solved
I have a rather simple project structure in Maven with sub-modules:
/
-pom.xml
-Utils/
-pom.xml
In /pom.xml I define properties for all sub-modules, like library versions or plugins configuration...
Archery asked 21/5, 2018 at 14:40
6
Solved
I'm trying to debug the following build error in our CI where "A depends on B which can't build because it depends on C." I'm building my data service which doesn't directly depend on kaf...
Bulky asked 13/6, 2017 at 12:7
4
Solved
I am fairly new to Maven and pom.xml. Is there a way I can find out which of my dependencies that are outdated, so that I can update version numbers in my pom.xml.
In other languages, for instance...
Quezada asked 18/8, 2010 at 20:46
1
Solved
I am trying to build an app that uses Media3 by following this: https://developer.android.com/media/media3/exoplayer/hello-world#kts
When I try to add dependencies in my app for its build.gradle.kt...
Pass asked 31/3 at 5:13
2
Solved
I'm trying to compare the behavior of go mod tidy (and the resulting content of go.sum) to the output of go list -m all.
Reading the docs, I understand go.sum contains the whole list of dependent m...
Originality asked 26/11, 2021 at 17:24
2
I use Renovate to keep my dependencies up-to-date. However there are some dependencies that I want to exclude from automatic updates, i.e. I don't want Renovate to update them, ever.
One such depen...
Iand asked 15/11, 2022 at 14:43
9
I want to use some NuGet packages inside Unity. I achieved that Unity finds the downloaded DLLs according to this article (https://www.what-could-possibly-go-wrong.com/unity-and-nuget/). The nuget....
Trstram asked 23/11, 2018 at 13:27
3
Is there a way to determine the latest version of a specific module which is compatible with another module at a specific version?
For example, running npm install @angular/http pulls @angular/[em...
Selhorst asked 26/4, 2020 at 20:23
2
Solved
For example, given a package A that depends on package B and package C, where package C also depends on package D - is there a way to output this information? (Using a vendoring tool or otherwise)
...
Sheet asked 7/9, 2018 at 15:28
4
Solved
I'm trying to understand this part: http://getcomposer.org/doc/02-libraries.md#lock-file
this lock file will not have any effect on other projects that depend on it. It only has an effect on the...
Bethune asked 20/5, 2012 at 15:15
14
Solved
When creating a new Java project in IntelliJ IDEA, the following directories and files are created:
./projectname.iml
./projectname.ipr
./projectname.iws
./src/
I want to configure IntelliJ IDEA t...
Jaddo asked 26/6, 2009 at 22:58
32
Solved
How do I add a library project (such as Sherlock ABS) to Android Studio?
(Not to the old ADT Eclipse-based bundle, but to the new Android Studio.)
Diacritic asked 16/5, 2013 at 12:55
4
I have a Gradle multi-project build with a master-directory where common definitions are located and some projects that are defined in settings.gradle via include statements.
Building, testing, ru...
Juneberry asked 30/5, 2017 at 15:48
0
I have a python project with some modules, scripts and optional dependencies:
[project.optional-dependencies]
extra = [ "tqdm", "antspyx>=0.4.2", "scikit-image", &q...
Diannediannne asked 17/11, 2023 at 12:39
7
Solved
Having yarn outdated is quite informative but I'd like to avoid running over package by package doing yarn upgrade.
From yarn's documentation, just yarn upgrade without arguments is said to upgrad...
Aerodyne asked 12/12, 2016 at 14:44
1
What is the best practice to automatically update python dependencies when working with poetry on github?
I would simply set up an action that runs poetry update (https://python-poetry.org/docs/cli...
Tegument asked 30/9, 2023 at 12:6
1 Next >
© 2022 - 2024 — McMap. All rights reserved.