1
vote
2answers
27 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 …
2
votes
2answers
55 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
14 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 …
0
votes
1answer
41 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 …
2
votes
2answers
41 views
Table -> Function dependency via a virtual column not in all_dependencies?
I've got the following objects:
CREATE FUNCTION CONSTFUNC RETURN INT
DETERMINISTIC
AS
BEGIN
RETURN 1;
END;
CREATE TABLE "FUNCTABLE" (
"ID" NUMBER(*,0) NOT NULL,
"VIRT" NUMBER GENERATED ALWAYS AS …
1
vote
1answer
35 views
How to create multiple components of a service with c’tor dependencies
I'd like to create several similar services which can be destinguished and accessed by their names (=keys).
For the service implementation I want to use classes with c'tor dependencies like this:
…
0
votes
2answers
49 views
Specifying a subproject’s Configuration in XCode
I have an XCode project (A) referencing another project (B). By default (as far as I understand it) XCode will implicitly build the configuration for the B dependency that matches the configuration of …
1
vote
2answers
52 views
How to Identify a Missing Dependency
We have a legacy 3rd party program that is failing with the error "Class Not Registered" when it tries to execute certain functionality. Is there a way to tell what class it's looking for? Sometimes …
4
votes
4answers
73 views
find pom dependencies by classname
How can I found the dependency by classname?
In particular, I want to include this class org.mortbay.jetty.testing.ServletTester in my project, how do I do that? And how did you find the answer?
0
votes
1answer
29 views
Activate profile in depended-on POM?
My company writes companion products for project management software that uses that software's Java API. They release new API versions with new releases of their products, and also point releases for …
0
votes
0answers
20 views
OracleCommand execution blocks if has OracleDependency
I have the following code:
OracleConnection conn = new OracleConnection(connString);
OracleCommand command = new OracleCommand("select * from testtable", conn);
conn.Open();
OracleDependency.Port = …
0
votes
0answers
94 views
Resolving missing dependency libexif.so.9 while trying to Yum install Mono on CentOS 5.3.3
Hey guys,
I'm trying to install Mono on CentOS 5.3.3 through Yum.
According to the instructions I found elsewhere I grabbed a copy of mono.repo from the Mono site and placed it in the …
28
votes
16answers
3k views
How should I detect unnecessary #include files in a large C++ project?
I am working on a large C++ project in Visual Studio 2008, and there are a lot of files with unnecessary #include's. Sometimes the #include's are just artifacts and everything will compile fine with …
0
votes
1answer
85 views
Cache and SqlCacheDependency (ASP.NET MVC)
We need to return subset of records and for that we use the following command:
using (SqlCommand command = new SqlCommand(
"SELECT ID, Name, Flag, IsDefault FROM (SELECT …
3
votes
3answers
221 views
Depedency injection: injecting partially-initialized objects
Hi!
This question is about Unity Container but I guess it is applicable to any dependency container.
I have two classes with circular dependencies:
class FirstClass
{
[Dependency]
public …
