dependencies

how to include 2nd level dependencies using maven

I have project A which a pom.xml dependency of: <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-email</artifactId> <version>1.2</version> </dependency> commons-email depends on javax.mail-1.4.1 I ran mvn install to install projectA.jar into the local maven repo. In project B, i...

ASP.NET Custom Control - What is the best way to include embedded CSS reference only once?

The problem: I am embedding a CSS file into a custom control library with several controls. I want to share the same CSS file for all of the controls regardless of how many instances of them are on a given form. When more than one control is on the form, I would like exactly 1 reference to the CSS file in the HTML header of the ASP.NET p...

uninitialized constant Geocode

Installing an old project on a new computer. If I type : $> rake db:migrate It returns: uninitialized constant Geocode /Users/macuser/Sites/hq_channel/vendor/rails/activesupport/lib/active_support/dependencies.rb:443:in `load_missing_constant' ... I sudo gem install'd all the gems that were in the environment.rb.. I did a rake ge...

Transitive dependencies in Maven2

Hi, I've just started using Maven2 after using Ant for the last 3 years. So far I like what I'm seeing but I'm still getting to grips with the structure of the tool and its integration with IntelliJ and whats going on in the background. One of the biggest draws to Maven was its ability to resolve dependencies transitively as part of th...

maven dependency range does not work as expected

Maven 2.2.1 claims to support version ranges (see e.g. http://www.sonatype.com/books/mvnref-book/reference/pom-relationships-sect-project-dependencies.html#pom-relationships-sect-version-ranges) I tried from a brandnew maven installation the following pom: <project> <modelVersion>4.0.0</modelVersion> <artifactId>rangetest</artifac...

Maven couldn't find LATEST version of a dependency

It's only occurred to log4j, My pom: ... <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>LATEST</version> </dependency> ~m2/repository/log4j/log4j/maven-metadata-central.xml: <?xml version="1.0" encoding="UTF-8"?> <metadata> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <ver...

Maven dependency

Hi i have a quite simple question about maven dependency. I have 2 modules of one project. So first module is dependent on second. Second module has dependencies on some libs. Second module can be itself installed as standalone app. So when i build the project the first war will contain packaged second module as well as all libs that sec...

What are good Linux distributions (and methods) for developing the latest Linux upstream (kernel, Gnome etc.) packages?

The people who really know the answer to this question are those who develop for programs or libraries which are included in Linux distributions, and which depend on other libraries which are included in Linux distributions. Them just telling me what they do in terms of the development environment I'm describing would be helpful. The p...

How to copy dependencies to gae war/WEB-INF/lib? (take 2)

Have same challenge as this guy: http://stackoverflow.com/questions/3421826/how-to-copy-dependencies-to-gae-war-web-inf-lib Applying his solution's pom segment for copy-dependencies and running "mvn package" did nothing. Seems that the goal doesn't ever get run. Help! Pom.xml: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns...

Diagram for applications databases dependencies and interactions

I'm looking for a diagram type that lets me model applications, databases and their dependencies. Does such an diagram exist, or do people just use UML or something similar? ...

Is there any Query to find the SP which contains errors?

I am working in Sql Server 2008 and there is a change of table in my database. So I need to know which all the queries I am using that table or I need to know which all queries will throw errors.I has changed some SP to work fine.But there is a lot of queries which may cause errors.So If there is possible to find which all queries will r...

ObservableCollection via Constructor Injection - Notification of Changes To Collection?

I have the following two classes: (1) IViewModelManager (2) WorkspaceViewModel IViewModelManager has an ObservableCollection. IViewModelManager is injected into WorkspaceViewModel's constructor. I have a View that binds to WorkspaceViewModel - and in the view is a ListBox that needs to bind to a collection in WorkspaceViewModel. If ...

What is a good way to deploy a Perl application?

I posted this question looking for something similar to Buildout for Perl. I think Shipwright is what I'm looking for but I'm not really sure. I've played around with it and I created a project, imported all of my source and dependencies and I've exported everything to a vessel then the documentation sort of just stopped. What do I do w...

Maven: how to override the dependency added by a library

Here's my generic problem: My project P depends on A which depends on B which depends on C which depends on version 1.0.1 of D. There's a problem with version 1.0.1 of D and I want to force the use of another module. I don't know how to declare this in my project's POMs since I haven't added a dependency on D directly. It's C which de...

What does a C++ program require to run?

This question has been bothering me for a while now. Let's consider the two following programs: #incude <iostream> int main() { std::cout << "Hello, World!"; } and int main() { int x = 5; int y = x*x; } Windows: The first example, naturally, requires some system .dll's for the console. I understand that. What about the se...

Automated OSGi dependency resolution for bundles that are maven-accessible?

Dear All: It seem that there is already a fairly automated method to link, at least on the server, dependencies with their available bundles in a Maven repository, e.g., http://www.springsource.com/repository/app/bundle/version/dependencies?name=org.springframework.osgi.extensions.annotations&amp;version=1.2.1 It seems like this would...

Generating classpath file with Maven

I'd like to generate a classpath file from pom.xml dependencies. I need it so during tests I have the classpath of all dependencies (that are later packaged into a bundle) maven-dependency-plugin does not suit me for two reasons: it generates paths to files in the repository, so to use other modules they first need to run install phas...

WPF attached properties not firing code behind when set in xaml

Hi all. I have a custom ClockFace UserControl which has properties to allow colors, font and hands (as a Path objects) to be changed. This is used in custom TimePicker and Clock UserControls. In these parent controls, the ClockFace properties can be set on the ClockFace object in xaml just fine. What I'm trying to do is expose these Cloc...

using IVY dependencies manager programmatically

Hey all i need help using IVY as dependencies manager my application need to load plug-ins at RUN-TIME means while the core application is running ,user can request for a new plug-in and install them , i wish to manage all installed plug-ins using the core application DB. i want to get a pom from my plug-ins server (or some othe...

python circular imports once again (aka what's wrong with this design)

Let's consider python (3.x) scripts: main.py: from test.team import team from test.user import user if __name__ == '__main__': u = user() t = team() u.setTeam(t) t.setLeader(u) test/user.py: from test.team import team class user: def setTeam(self, t): if issubclass(t, team.__class__): self.t...