dependencies

Grails dependency issues

I'm in the process of moving a Java/Spring MVC app to Grails. I was able to get a couple of pages along with Spring Security working. However, when I added cxf-bundle-minimal as a dependency I started to get the errors below. :::::::::::::::::::::::::::::::::::::::::::::: :: UNRESOLVED DEPENDENCIES :: :::...

Visual studio solutions with large numbers of projects

I see developers frequently developing against a solution containing all the projects (27) in a system. This raises problems of build duration (5 minutes), performance of Visual Studio (such as intellisense latency), plus it doesn't force developer's to think about project dependencies (until they get a circular reference issue). Is it ...

download spring with dependencies

hi there, is there a way to get a spring-with-dependencies.zip for the latest version of spring (3.0x) ? I know that one could get whatever dependencies using maven/ivy but if I were NOT to use either of these tools, AND also without knowing which library versions are compatible, how can I get all the JARs one-shot ? Just like CentOS ...

Safe Unity Builds.

I work on a large C++ project which makes use of Unity builds. For those unfamiliar with the practice, Unity builds #include multiple related C++ implementation files into one large translation unit which is then compiled as one. This saves recompiling headers, reduces link times, improves executable size/performance by bring more func...

Removing the explicit runtime dependencies to other projects' libraries in Eclipse launch configurations for projects that use Plug-in descriptions?

In Eclipse it is possible to create launch configurations in a project, specifying the runtime dependencies from another project. A problem I found was that if you have a multiple project workspace, being possible that each project has its own libraries, it is easy to add explicit dependencies in a secondary project to libraries that are...

In OOP, should dependencies hold a reference to their parent?

I have an Order object to represent a Prospective Order/Receipt. This is an entity. It has an identity. I have a Writer object to read the Order object's properties and display it nicely. It is a bit of a chore to have individual getters for all the pieces of the Client's Billing Details. So, I am thinking of letting the Writer object...

Python distutils builds extensions differently on different machines.

I have been working on a Python extension module with lots of files. While building on one machine, python setup.py build will happily detect changed files, build just those files, and link the whole thing together, just like make. On another machine, however, a single change to any file triggers a recompile of all sources. Just to be c...

Is there a maven equivalent of rpm --whatprovides for a jar file?

How do I use maven or another tool to find which dependency of a dependency which provides a particular jar? Sometimes they're three or four dependencies deep. ...

Simplest, fastest way to break out all dependencies from a class

When working with legacy code, and trying to create tests, I often break out dependencies from classes or methods so I can write unit tests using mocks for these dependencies. Dependencies most often come in the form of calls to static classes and objects created using the new keyword in the constructor or other locations in that class. ...

CruiseControl.net checking files in source control (into different projects) after building them

Hello! I have set up an automated build server - so far so good. Now I want to sort out dependencies. We have several DLL files that are included in many (unrelated) projects, and I want to set up CruiseControl.NET to first build our DLL files and then "check them in" other projects in SVN, so when they get built, they will always use t...

Force assembly dependencytype install on msbuild.exe while publishing via command line

While publishing files from command line msbuild /target:publish I have following issue - the generated manifest file set's for used dll dependencyType='prerequisite'. I would like force msbuild to use dependancyType='install'. <dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true"> <assemblyIdentity name="mydlln...

including different versions of glib headers

If there are two source files a.c and b.c: a.c includes the glib.h of glib-2.6.6 and b.c includes glib.h of glib-2.12 Then I compile them and link them together and generate target program. Assume that a.c is not using any new feature introduced in after v2.6, will including different version of headers cause any problem? If so, ...

How to specify a repository for a dependency in Maven

In projects with several dependencies and repositories, the try-and-error approach of Maven for downloading dependencies is a bit cumbersome and slow, so I was wondering if there is any way to set an specific repo for some declared dependencies. For example, I want for bouncycastle to check directly BouncyCastle's Maven repo at http://r...

Using the SMO DependencyWalker to load TreeView

In a windows forms application, using C# I want to programmtically pass the SMO DependencyWalker a single object ( table, View, etc ), discover the dependencies related to that object and then load a WinForms TreeView with the results where the TreeView looks exactly like the TreeView within the SQL Server 2008 Management Studio "View De...

Wanting to distribute program as a framework, but worried about number of dependencies

I have a project right now that straddles the line on framework and pluggable program, and am worried about the sheer number of dependancies that this program rely's on. Currently I have this: Commons lang - Mainly for string utils and array utils slf4j - Logging facade slf4j-log4j - Redirects logging to log4j for GUI (note that the G...

Can't add project from local Maven repository as a dependency

Hi. I've written a new Maven project and for now let's call it Utils. I've installed it successfully in my local Maven repository. At least the targets clean install print BUILD SUCCESSFUL in the end. I can also find the jar when I navigate to it manually through the Windows Explorer. Now there's another project called Import I've writ...

How do we enable SQL cache dependency in ASP.NET 2.0 ?

I think there are some steps to enable SQL Cache Depdndency : Enabling notifications, changes in web.xml and then using Cache Dependency object. Please help how do I pass through them ? ...

"The specified module could not be found" error when running C# ASP.NET web service referring C++ dll

I have C# ASP.NET web service project in visual studio 2005 which refers a C++ dll. But when I try to run the web service I get the following error which is shown in the web browser: The specified module could not be found. (Exception from HRESULT: 0x8007007E) Description: An unhandled exception occurred during the execution of the cu...

Eclipse not using jars from add classpath variable

I added a classpath variable (via eclipse's build path) that points to a cache of jars. While this folder is represented in eclipse's folder view, the contained jars are not recognized for some reason. For example, when I import a class that is present in a jar in the cache (and thus the added classpath variable), eclipse indicates tha...

Compiled .dll files requiring msvcr100.dll to load

I have a dll file compiled in MSVC++ 2010. It doesn't require any other extra library, yet only half of its users can load it because some are missing msvcr100.dll. Looking at the dependencies, it is requiring some basic functions like memcpy free malloc, though I thought those were standard C runtime functions. The code generation setti...