0
votes
4answers
325 views
How do I implement maven source dependency among sibling projects?
I have a java project that is composed of 3 sub projects that generate a .jar artifact each (and have sub-dependencies among them).
In addition there is a web projects that depends on the first 3 …
0
votes
2answers
29 views
C#/WPF: Dependency Property is not updating the bound Property?
Hello,
I'm trying to bind a Dependency Property from my UserControl to my MainViewModel.
This is how the DependencyProperty looks like:
public static DependencyProperty ItemHasChangesProperty = …
0
votes
1answer
25 views
How to setup local dependency in grails plugin (classpath to the main app)?
Hi,
I have a Grails app consisting of main app and its local module linked in BuildConfig.groovy:
grails.plugin.location.'mymodule' = "modules/mymodule"
In mymodule I would like to use Helper …
3
votes
6answers
2k views
How to exclude all transitive dependencies of a Maven dependency
Hi,
Right now, in Maven2, to exclude a single transitive dependency, I have to do something like:
<dependency>
<groupId>sample.group</groupId>
…
0
votes
0answers
35 views
NUnit “missing” GPSVC.DLL on Windows 7/64
I recently upgraded from Vista/32 to Win7/64. On my old machine, everything was working fine.
Unfortunately, on my new machine NUnit won't load my unit tests, with the error message …
0
votes
0answers
17 views
Avoiding re-building prerequisites in Ant
I have an existing Ant project and would like to speed up the build process
by avoiding re-building components that are already up to date.
Ant permits you to specify that one target depends on …
1
vote
3answers
239 views
Rotating OpenGL scene in 2 axes
I have a scene which contains objects located anywhere in space and I'm making a trackball-like interface.
I'd like to make it so that I can move 2 separate sliders to rotate it in x and y axes …
0
votes
2answers
31 views
why project dependency affect linker settings
Hi,
any idea why project dependency (Visual Studio) affects linker settings (C++)? I thought that it's enough to chceck linker settings (Additional depend...) or pragma in source code. It's not a big …
1
vote
3answers
40 views
Using maven to distribute a swing application that can have each dependency individually tracked
I'm moving my project to Maven and eventually OSGi. I currently distribute the project is a large Zip file with all the dependencies. Although my projects code is only 20% of the total package I have …
0
votes
3answers
631 views
Ivy: how do I remove transitive dependencies ?
I'm using Ivy to manage the dependencies on my project.
So far, I've specified a dependency on Hibernate and servlet-api. However, the hibernate jar itself has a lot of dependencies that aren't …
0
votes
2answers
15 views
How do you enforce dependencies among java folders in Netbeans?
Hi
I am new to Netbeans. I am wondering if someone can help me with project setup in netbeans. I am moving half million lines of Java code from a different IDE to Netbeans. I was able to get the code …
2
votes
2answers
74 views
draw dependency graph for a java class
Heyho,
I'm searching for a tool like JDepend to draw a graph for a java classfile. JDepend seams to be fine, but it's not resolving the deps from the deps (maybe I'm just missing some special …
1
vote
1answer
24 views
Header dependency in automake
I'd like to create a Makefile.am file which generates one header file mentioned in a xxx.c file.
Let's say that xxx.c contains:
#include <version.h>
...
and that I have a rule to create it …
1
vote
1answer
61 views
How would you describe DSM in simple terms?
How would you describe DSM in simple terms?
0
votes
1answer
47 views
Running jar from different directory cannot find required dependency
I'm trying to run a jar ec/mobat/MOBAT.jar which depends on some jars located in ec/mobat/lib/. It works if I do:
ec/mobat/$ java -jar MOBAT.jar
However I want to be able to run the jar from …
