is it possible to replace log4j from a transitive dependency with logback?
Here are my gradle dependencies (https://github.com/geoHeil/lab04/blob/master/build.gradle):
dependencies {
compile group: 'org.apache.hadoop', name: 'hadoop-common',…
in my Android project I use
compile 'com.squareup.okhttp:okhttp:2.2.0'
I need okhttp in version 2.2.0 for my code to work properly. But I have a problem when I add
compile('io.intercom.android:intercom-sdk:1.1.2@aar') {
transitive =…
Can I use resources (strings, assets, drawables) from an Android AAR (lib1) in an APK that depends on it? What about resources in a transitive AAR (lib2) that lib1 depends on?
I'm building a simple project with maven. I'm unable to get it to build because a transitive dependencies is missing, namely objenesis 1.0.
I run maven in debug mode and got this message:
[DEBUG]…
I'm using my own lib, which configuring core dependencies and other stuff for micro-service product (some kind of custom starter).
To make dependencies transitive (auto-import in inherited projects) i'm using gradle api(dependency) in lib…
In my solution, I have two Class Library projects targeting .NET 5. When I install the NuGet package Microsoft.Azure.Management.DataFactory to both projects, they install separate dependency versions for that package.
For example, Project A will…
Let's say that I have the following projects:
Project A
Project B - References Project A
Project C - References Project B
If I set true in Project C's .csproj, Project C will…
After installing Square's Reader SDK into my app, I'm running into duplicate class errors between some Gradle dependencies as shown below.
My app module dependencies:
dependencies {
def readerSdkVersion = "1.3.5"
implementation…
I need some custom way to resolve variable which might have transitive and verify cyclic/un-resolvable fields.
e.g.
var v1 = 'asd';
var v2 = '@@{v1}@@';
var v3 = '@@{v2}@@';
var v4 = '@@{v3}@@';
var v5 = '@@{v4}@@';
var v6 =…
I would like to globally disable all transitive dependencies. I am using the following and it works fine.
configurations.all {
transitive = false
}
Problem is that I need to allow transitive dependencies for one specific dependency. Is there a…
I have created a maven repository and uploaded it to Github. When I add it as a dependency to a sample project, the gradle sync completes successfully. But when I try to run the app, it crashes with a java.lang.NoClassDefFoundError.
Link to…
I read that java 9 modules helps solving the problems that appears when pulling several versions of the same dependency due to transitive dependencies. I cannot see why. If you bring several modules you can obtain also the same problem. I mean, if…
I have included a jar in my android project,
build.gradle
as
implementation files('libs/dependency_a.jar');
But there are dependencies with are needed by this jar file, which can be downloaded from the internet but don't get downloaded while…
Program type already present: android.arch.lifecycle.LiveData$1
Message{kind=ERROR, text=Program type already present:
android.arch.lifecycle.LiveData$1, sources=[Unknown source file], tool
name=Optional.of(D8)}
Im currently studying android…
I want to include only a specific jar and its dependencies using maven-assembly-plugin something like below. My expectation is to copy apache-cxf-2.7.11 and all its dependency jars into "lib/apache-cxf-2.7.11"
…