dependency-resolution Questions
13
Solved
I'm installing a package that has Maven dependency and get a DependencyResolutionException when I try to clean it.
After cloning it, I navigate to the directory and run the following to install it ...
Advent asked 7/4, 2021 at 5:28
3
Why does gradle not searching for dependency in ALL defined maven repos?
Repos block is defined:
repositories {
maven {
name = 'JBoss.org Maven repository'
url 'https://repository.jboss.org/ne...
Levitt asked 12/8, 2016 at 13:54
6
I added a Maven dependency to my project and my project compiles locally, while it doesn't compile on server. It can not resolve the newly added dependency.
This is my pom.xml file:
<reposi...
Adhere asked 3/2, 2015 at 10:6
17
Occasionally maven complains that a particular dependency, which is built and packaged locally, cannot be found in the local repository while building another project that has it as a dependency. W...
Unmentionable asked 20/9, 2012 at 16:44
2
Solved
I am creating a Gradle task in which I want to download and reference the jar file for an artifact that exists in a Maven repository. Specifically, I plan to call an external script through the Gra...
Jackstraw asked 10/8, 2018 at 22:22
2
Solved
I've recently been introduced to the concept of a dependency version lock file when reading about package managers like NPM, Yarn, Paket, Cargo, etc. My understanding is that it is a file that list...
Garrard asked 13/6, 2017 at 12:28
3
Solved
I have an android module with this build.gradle file:
apply plugin: 'com.android.library'
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 14
targetSdkVersion 27
versionCode 1
...
Burkhart asked 18/7, 2018 at 11:55
1
Solved
I have a conflict with a transitive dependency. Overriding, excluding or forcing does not help. What else can I do to get the right version of the library into the jar?
The full code dan be. found ...
Selfinductance asked 30/5, 2018 at 5:56
1
Solved
I am having problems with resolutionStrategy.cacheChangingModulesFor.
My project build.gradle looks similar to this
apply plugin: 'base'
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply ...
Poverty asked 4/6, 2015 at 10:40
4
Solved
Under Windows, I have used a program called Dependency Walker to examine the libraries the application uses. I was wondering how I can achieve this on Linux for a standard binary:
ELF 32-bit LSB ex...
Erection asked 13/7, 2009 at 17:5
1
© 2022 - 2024 — McMap. All rights reserved.