Questions tagged [conflicting-libraries]

162 questions
0
votes
1 answer

How to automate discovering dependency conflict

The java application I develop should run on servers I have not direct access to. Sometimes dependency conflicts arise. I mean that on some servers the app works perfect and on other ones same application fails. And the errors indicate libraries…
Loom
  • 9,768
  • 22
  • 60
  • 112
0
votes
0 answers

JavaScript Native Map class overriden by other library

I'm developing a JavaScript library and new Map() call causes the following JavaScript error on some websites using my library. Map is not a constructor When I execute console.log(Map) on Chrome developer console, I get the following…
rhythm
  • 469
  • 9
  • 24
0
votes
1 answer

What is the standard way to fix conflicting types from different libraries in C?

I'm trying to include 3rd party libraries into the .c file but it gives either redefinition or conflicting types error since it has typedef structs with the same name. I've tried to include guards after reading some answers here in SO and obviously…
Renan Lopes
  • 411
  • 4
  • 16
0
votes
1 answer

VS2017 - Consolidating Newtonsoft.Json.dll (but it could just as easily be any varied version nuget package)

I’ve a solution with somewhere in the region of 60 projects, most of which use Newtonsoft.Json.dll and many of which reference each other. Things were building nicely, no warnings. Took a look at the Consolidate feature of the nugget package…
0
votes
0 answers

@JsonValue and @ApiModelProperty conflicts

in my project I am using Swagger to document REST API. I have simple value object which I want to document. public class MyClass { @JsonValue private String myField; public String getMyField() { return myField; }…
aliszja
  • 21
  • 2
0
votes
1 answer

Is always safe to add dependency libraries as compiled in Java?

This is the scenario: I'm creating a plugin for jIDEA, so my code will run inside another program. I need to use some libraries, but I'm not sure if that library will be present on runtime inside jIDEA. If I add the library as "compile", what will…
0
votes
1 answer

Version Conflict same Project DevExpress

I have one dll that uses a version 16.2 of DevExpress, this dll is used to show one form. Basically I want to install this dll in a project that constains all references in DevExpress 14. When I create my dll, I merge all DevExpress 16.2 in the…
0
votes
1 answer

Call ruby script with other gems rails

I'm trying to perform something like this: serialized = %x(ruby loader.rb) from a Controller but I have gem conflicts because loader.rb uses rubyXL (depends on rubyzip >= 1.1.6) and my Rails project uses `rubyzip -> 1.0.0. There are any way to…
jonango
  • 197
  • 1
  • 9
0
votes
2 answers

Conflicting libraries error in Python

I'm trying to install a library and run it on PyCharm. Tried to install it through PyCharm but I wasn't able, some error happened: Collecting Google-Search-API Using cached Google-Search-API-1.1.13.tar.gz Complete output from command python setup.py…
aabujamra
  • 4,494
  • 13
  • 51
  • 101
0
votes
0 answers

ClassLoad Failing. ClassNotFound Exception

I am trying to load a class from a JAR file. The class is called BasicLineFormatter. Since I am stating the class using a shell script using java -cp command. The class BasicLineFormatter exists in two of my jars, one bring the…
hell_storm2004
  • 1,401
  • 2
  • 33
  • 66
0
votes
1 answer

How to fix conflicting library issue while compiling qt on centos 7 x64

While trying to do make on small QT program on linux. I am getting warnings as /usr/bin/ld: warning: libssl.so.10, needed by /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/libQt5Network.so, may conflict with libssl.so.1.0.0 /usr/bin/ld:…
user1642018
0
votes
3 answers

Conflict with script and prototype.js

I have the following code and it looks like my first script is conflicting with prototype.js. Whenever I remove prototype.js the functionality of the first script works fine. When added back in, the functionality of prototype on the form is back,…
MHeredia
  • 51
  • 1
  • 11
0
votes
1 answer

Can not load file or assembly or one of its dependencies. The system cannot find the file specified

X <= nuget package A <= DLL version 1 X <= nuget package B <= DLL version 2 So my project X references two 3rd party nuget package A and B. Both packages reference the same DLL but with different version. Now the issue seems that at build time,…
Lee
  • 103
  • 1
  • 11
0
votes
0 answers

jQuery plugins - is not a function error

I use a number of jQuery plugins on my site (owl carousel for example) which work fine everywhere except one page where I require another script which loads content from another site into an iframe. On the problem page I am getting errors for all…
MP_Webby
  • 916
  • 1
  • 11
  • 35
0
votes
1 answer

How to use bootstrap css and javascript in selected pages in AngularJS?

I am in middle of developing an webapp using a MetroUI CSS. After developing a few pages I understood its css are conflicting with Bootstrap's css, so I removed the Bootstrap's css from the project. Now in another page where I need to include a…