dependencies

Continuous Integration and Vb6 compilation

Possible Duplicate: Continuous Integration and Vb6 compilation I am implementing Continuous Integration using Cruise control.net and have more than 50 legacy Vb6 .dlls. Some of .dlls are dependent on each other. For ex: A.dll is dependent on B.dll. All .dlls are complied into one Common folder let say "Bin" and binary compati...

maven dependency exists but classDefNotFound?

I have the following dependency in my pom file:- <dependency> <groupId>org.jvnet.ws.wadl</groupId> <artifactId>wadl-core</artifactId> <version>1.1-SNAPSHOT</version> </dependency> the jar file exists on the system and the dependency can be resolved. but when the code is run it fails on java.lang.ClassNotFoundException: org...

When does .net check for assembly dependencies?

While pursuing a spearate problem I've come to a very peculiar situation. A demo code would be: public class Global : HttpApplication { protected void Application_Start(object sender, EventArgs e) { Log("In Application_Start"); SomeClass.SomeProp = ConfigurationManager.AppSettings["PropValue"]; } protecte...

I want to deploy a jar AND it's dependencies to a remote repository.

Basically, I have a project and a Continuous Integration solution which I have no admin access to, that can't reach out of our network. Consequently, I want to deploy all of the jars for the project to our central maven repository which the CI solution can reach. They are in my local repo but it's a pretty complicated project. Can't I ju...

ignore maven dependency during specific execution phase

I have a (custom) embedded jetty launcher which I had been using to develop/test my web application (before moving to maven). I am able to trick m2eclipse into putting the maven managed dependencies to libraries for the war file onto the launcher classpath (when run from eclipse). I did this by creating two dependencies for the same ...

Is there any library/tool that is able to analyze the dependencies of the source from a java project?

I am trying to figure out the way to analyze dependency condition of java projects. Is there any API/tool that can help find out the dependency in the source? I know that dependency can be easily analyzed in a project's binary format, by using tools like "DependencyFinder". However, I don't know if there is any tool to do it in its sour...

Problem integrating OCL types in Xtext grammar

Hi, I'm working on a grammar (Xtext project) where I want to reuse OCL types. Usually you refer in Xtext to existing types with an import statement, e.g. import "http://www.eclipse.org/emf/2002/Ecore" as ecore There is already an example Xtext project (CompleteOCL) which integrates OCL types in a grammar. Unfortunately the project re...

How to use Java access modifier properly in library devlopment

I'm developing a library which the other programmer will import and use it for their purposes. I'm confused about the objective of Java access modifier. The problem is that I have classes below ClassA in package org.mylibrary ClassB in package org.mylibrary.internal ClassA needs to resolve ClassB so ClassB need to be public class. ...

Build order and dependencies not preserved on upgrade from VS 2008 to 2010 with msbuild

I'm in the process of upgrading our VS 2008 solution to run on VS 2010 I managed to successfully build in VS 2010 My next step now is to configure a build machine running TFS 2008 Whenever I start a build it does my projects in alphabetical order with no regard for dependencies. I've googled a lot and I can't seem to find a solution t...

How to track which tables/views/etc depends from a table, in Oracle

How to know which objects (tables/views/etc) uses a certain table? I have to replace my table PRICE. So, is there something like? select system.dependencies from PRICE ...

Is there a way to figure out which .net symbols an assembly uses from a dependant assembly?

Given an assembly A, that refers to Assembly B, how can I figure out methodically all the symbols (classes, constants, enums, etc) that A uses from B? Is there any tool that can tell me that? PS: I need it to analyse how "entrenched" is the dependency ...

Easy makefiles for gcc/g++

My projects almst always consist of: 1- Pairs of Foo.h and Foo.cpp 2- Some extra headers util.h etc. What is the simplest way to write a makefile that a-runs $CC -c foo.cpp for each .cpp file, keeping a dependency to its coresponding .h file b- provides some way that I can manually add extra dependencies c-includes a linking s...

C++ Game - Signalling a parent class, circular dependency issue

I'm having a little circular-dependency problem. It works fine, but it makes for ugly-seeming code. It's in the context of a Snake game. I have a class, Snake, which contains a vector of SnakeSegments, and manages their interaction (for instance moving and growing as a unit, rather than as separate entities). When a SnakeSegment collid...

Gradle Task Dependencies

How on earth can I do this in gradle: eg. want to use HTTPBuilder in a task. build.gradle: repositories { mavenRepo urls: "http://repository.codehaus.org" } configurations { testConfig } dependencies { testConfig 'org.codehaus.groovy.modules.http-builder:http-builder:0.5.0' } task someTaskThatUsesHTTPBuilder (dependsOn: configurati...

Source Code Dependencies

Suppose I have a bunch of C++ files: A.cc, B.cc, C.cc, and their associated header files. A.cc makes use of classes in B.cc and so on. Now say I want to build the source files. After the preprocessing phase, can I theoretically compile (not link) all the files simultaneously? (A.cc -> A.obj, ...) I'm just wondering if there is ever a ...

Using Jquery Validation Plugin's required( dependency-expression )

Hi I'm using the jQuery Validation plugin, and I'm trying figure out how i can make a name field required if a prefix (Mr, Ms, etc) or a suffix (Jr, Sr, PhD) is selected. This is what I have: $('#geninfo').validate({ rules:{ firstname: {required: function(element){ return $("#prefix").val() != " "; } } }, mess...

Solve circular references without introducing a new project

I have big, fat and ugly legacy program. One task I had to accomplish was adding a new class to project A. Project B references project A, but the functionality I need to add depends on a method of a class in project B. Of course, I can't reference project B from A, because that would create a circular reference. In a similar situation, ...

Your thoughts on a proposal to manage JavaScript dependencies

I've recently done a great deal of JavaScript programming in the context of developing a Rich Internet Application. My view at the start of development is pretty much what it is now; JS RIA works but the development tools are lacking. One tool that I missed in particular was for managing dependencies. What I found was that I ended up wi...

Maven : Parent project not resolved, transitive dependencies not used for compiling

Hello. After searching and trying a lot of things I need a Maven maven :) So, my problem is that on my development box (which is Windows 2003) I can build my maven project, but on the Bamboo server (x86_64 x86_64 x86_64 GNU/Linux) it fails because one of the modules doesn't have a library and the compiling doesn't find a class. The clas...

qt qmake extra compilers with dependencies among generated files

Can qmake handle dependencies of generated source files? We have a prf file like this: idl_h.name = Generate .H file for ${QMAKE_FILE_BASE}.idl idl_h.input = IDLS # variable containing our input files idl_h.variable_out = HEADERS idl_h.commands = <command that takes .idl and genrates .h> idl_h.output = $$IDL_GEN_DIR/${QMAKE_FILE_BASE}...