Questions tagged [external-dependencies]

90 questions
176
votes
4 answers

How to bundle vendor scripts separately and require them as needed with Webpack?

I'm trying to do something that I believe should be possible, but I really can't understand how to do it just from the webpack documentation. I am writing a JavaScript library with several modules that may or not depend on each other. On top of…
bensampaio
  • 3,266
  • 5
  • 21
  • 19
65
votes
2 answers

How do files get into the External Dependencies in Visual Studio C++?

I wonder why one of my projects has VDSERR.h listed under "External Dependencies" and another hasn't and gives me an "undefined symbol" compiler error about a symbol which is defined in there. How can I include this file in the other project as…
Felix Dombek
  • 13,664
  • 17
  • 79
  • 131
16
votes
1 answer

TFS dll and references issues

We use Team Foundation Server for our main project. Every time we add a new employee either onsite or offsite we always have to set up the references manually. Is it possible for TFS to copy/save/pass the dll's to the new user without having to…
16
votes
5 answers

Beep on Linux in C

I want to generate a beep sound with a specific frequency and length (for different sound signals) using the system beeper (and only the speakers if beeper is not available / accessible). I know it is possible to do this by using ioctl, but that…
omnidan
  • 1,162
  • 2
  • 12
  • 25
14
votes
2 answers

Scala - How to compile code from an external file at runtime?

I want to design a Scala program that accepts Scala files as parameters which can customize the execution of the program. In particular, I want to supply at runtime files that contain implementations of methods that will be invoked by the program. …
Kvass
  • 8,294
  • 12
  • 65
  • 108
10
votes
1 answer

How to include external dependencies in UMD bundle with rollup

I'm using rollup to bundle a library and I want to include external dependencies together with my code in the UMD bundle. I can't find any useful information about this in the docs. It could be that I'm missing something obvious but it seems like…
David
  • 333
  • 1
  • 2
  • 14
10
votes
1 answer

How to export an Eclipse Project with External Jar dependencies?

In Processing, I'd like to import a library I've written in Java which wraps around an external library (a .jar file). Processing appears to import my own library, but when I call the constructor (which references some classes in the external…
funseiki
  • 9,167
  • 9
  • 36
  • 59
8
votes
1 answer

Performance testing with external dependencies

When performance testing in the microservices world (talking mainly load testing), what is your approach regarding external dependencies (APIs) your application relies on, but not owned/controlled by your team. In my case the external dependencies…
martbon
  • 81
  • 3
6
votes
4 answers

How might I handle development versions of Python packages without relying on SCM?

One issue that comes up during Pinax development is dealing with development versions of external apps. I am trying to come up with a solution that doesn't involve bringing in the version control systems. Reason being I'd rather not have to install…
Brian Rosner
  • 694
  • 4
  • 9
5
votes
3 answers

NoSuchBeanDefinitionException: No qualifying bean of type available: expected at least 1 bean which qualifies as autowire candidate

I am trying to migrate a Spring 4.x.x to Spring boot and it has a dependency on a class in external spring 2.5 jar. I have made all the autowiring changes and below is my application…
Aarish Ramesh
  • 6,745
  • 15
  • 60
  • 105
5
votes
2 answers

How do you manage external dependencies for your application?

There are many types of external dependencies. Interfacing with external applications, components or services (e.g. Outlook to send emails, TWAIN or WIA for scanning, ActiveX objects and Web services for various purposes, and so on). What is your…
5
votes
5 answers

Information Hiding vs. Hidden Dependencies

What are some common best practices in procedure (or function, module, etc.) design for balancing the desire for information hiding and an appropriate level of abstraction in the procedure's interface with the problems inherent in introducing…
Matthew Nizol
  • 2,609
  • 1
  • 18
  • 22
3
votes
1 answer

Can C++ projects/libraries that have external dependencies be configured to work right off the bat?

I'm a beginner to C++, and I was recently figuring out the process of downloading an external library and linking it to a project I'm working on. Coming from languages where adding new dependencies and installing necessary ones are a command away,…
Ralph
  • 33
  • 3
3
votes
0 answers

iOS - Tuist: External dependency errors at steps fetch and generate

I am using Tuist v2 and trying to add external dependencies to my project using Dependencies.swiftfile: import ProjectDescription let dependencies = Dependencies( carthage: [], swiftPackageManager: [ .package(url:…
Olcay Ertaş
  • 5,987
  • 8
  • 76
  • 112
3
votes
0 answers

How to glob an absolute path for files in Bazel

Context: I'm trying to come up with a fix for https://github.com/tensorflow/tensorflow/issues/37861 where header files of an external dependency are manually listed but that list is version specific and hence impossible to keep up to date. What is…
Flamefire
  • 5,313
  • 3
  • 35
  • 70
1
2 3 4 5 6