The management of dependencies, for example third party libraries, that are used by a software project.
0
votes
0answers
8 views
Publish Snapshot vs Publish Release in Gradle
I'm just learning gradle, coming from both an Ant+Ivy and Maven background and I'm trying to wrap my head around the proper way to publish a release version of my software using gradle.
Ant + Ivy
In ...
0
votes
0answers
19 views
Microsoft Access Database Creation and Management without having it installed
This might probably be the dumbest question in the entire computer world existence, but is still an important question for me.
Is it necessary for me (Or more specifically the user of the application ...
0
votes
1answer
34 views
Ember throws an error because of Handlebars, which is correct version
Here's the <head> of my HTML document.
<!DOCTYPE html>
<html lang='en'>
<head>
<link href="/assets/application.css?body=1" media="all" rel="stylesheet" ...
0
votes
1answer
46 views
+250
Dependencies for jdt.compiler cannot be found
The issue is that it seems impossible to run ASTView from source; I get a NullPointerException, something to do with singletons I think. The solution - or so I thought - was to start a new plugin ...
1
vote
1answer
23 views
Dependency management for SLF4J and Logback
I'd like to start using SLF4J with Logback. I read over Logback's online documentation and am now ready to add the JARs to my repo and try it out.
But I'm at a loss! What JARs do I need? I downloaded ...
1
vote
1answer
24 views
How do I configure the SVN HTTP proxy from the command line?
I script the set up of my build environment. (So the build process can bootstrap itself if it finds itself running on a clean image).
As part of this process, certain dependencies are retrieved from ...
0
votes
1answer
20 views
gradle custom dependency resolution
Is it possible to bypass Ivy (or whatever else Gradle uses internally for dependency resolution) and still keep the same dependency DSL? I'm trying to develop a plugin for resolving native ...
0
votes
1answer
25 views
Maven Site scannotation.jar
i'm trying to get maven site running. But for now four hours I'm getting a Problem with a
dependency.
When I'm running maven I get this failure
[WARNING] Unable to create Maven project for
...
0
votes
0answers
14 views
Dependency management for COMPILED static libraries?
I'm aware of Cocoapods. However this isn't very useful for commercial use because we don't want to deliver source code.
We want to be able to deliver compiled libraries. But use them in our own (and ...
0
votes
2answers
15 views
Apache Ivy and configurations
I'm using Ivy to manage my dependencies, with some problems on provided jars
This is my ivy.xml file
<configurations>
<conf name="local" visibility="private" />
<conf ...
0
votes
0answers
26 views
Dependency manager in .net - problems with nuget
Environment brief
We have a really big IT project (more than 60 solutions). This solutions can be separate in tiers like: contracts, tools, communications tools, UI, etc.
There are a lot of ...
-2
votes
2answers
28 views
Where can I find com.ibm.xml.parsers.SAXParser? [closed]
I have a 3rd party jar which has a dependency on com.ibm.xml.parsers.SAXParser
I've spent some time looking for the jar one the net (findjar, jarfinder, mvnrepository etc) but can't find it ...
0
votes
1answer
27 views
Grails 2.1.x dependency problems
I encountered the following error messages while setting up my out-of-box grails application:
Server access Error: Connection refused: connect ...
0
votes
1answer
36 views
Provided dependency in library, using previous version in project
If a library declares provided dependency on eg servlet-api using v3.0.1; would it be possible for users to use version 2.5 for their library, that will be used on third party web application?
In ...
0
votes
1answer
24 views
Split my maven pom into different files
I do not want to change my project/module structure. Its just my pom file is getting large and complex (due to lots of dependencies) and want to separate it into easily navigable sub files ... is this ...
0
votes
3answers
88 views
EJB modules cannot find class from another EJB module on glassfish
I have an EJB 3 module deployed on my Glassfish 2.1 server.
I'm trying to deploy a second EJB module, which depends on this first module, but the deployment fails with java.lang.NoClassDefFoundError ...
0
votes
1answer
27 views
Managing custom python module dependencies through virtualenv
I am using some custom modules, not available on PyPI. Is it possible to manage the dependency through virtualenv?
0
votes
1answer
37 views
akka.dispatch.Future not found
I am trying to import akka.dispatch.Future in my class but the compiler is unable to find that particular package. The one that it's able to find is akka.dispatch.Futures.
Can somebody point out what ...
1
vote
1answer
32 views
Auto compiling a dependent project without having a dependency on it
I'm developing ASP.NET MVC with extensive usage of Spring.net.
I have lots of services implemented in different assemblies. The purpose of using Spring and abstract interfaces is to decouple the ...
0
votes
1answer
54 views
Managing CakePHP Plugins with Composer
Over time I've developed a number of CakePHP Plugins that I reuse across projects. What I'd like to do is start managing them like dependencies.
My initial thoughts are that I should make each plugin ...
0
votes
0answers
32 views
What's the Intellij equivalence to Eclipse user library?
I have been using Eclipse for many years but I hate it due to its bad performance - it freezes from time to time.
Now I am trying to use JetBrain's IntelliJ IDEA 12.1, and have some questions.
In ...
1
vote
2answers
50 views
Linux packages Where to download complete dependency list
where do I find the list of all dependencies (direct and transitive dependencies) of most popular Linux packages?
I want a complete list (just list) in the form of dependency graphs, for exploration. ...
0
votes
0answers
24 views
YUI3: How to bundle dependencies for offline deployment?
I am building a web application using YUI3 and with it it's "Loader" and "App" components. I separate my application into different modules with YUI.add(). All is going well so far.
However, the ...
0
votes
1answer
57 views
spring version set to 3.2.1.RELEASE in pom but different jar in project
In the pom file of a java project I have the spring dependencies set to version 3.2.1.RELEASE but when I run a mvn dependency:tree I get different versions for some of the dependencies:
...
0
votes
2answers
44 views
Missing references that don't exist in MVC3
I separated out my models from my main ASP.net MVC3 app into a class library which is apart of the same solution as my project and is referenced into my project.
How ever the models in this class ...
0
votes
1answer
34 views
Adding JBoss AS 7 libs as Gradle Dependency
I need to add JBoss 7.1.1 libs as a Gradle dependency in my project, because I need them in compile time.
But all the dependencies I have are added from a Maven Repo.
I have seen how to do it, I can ...
0
votes
1answer
35 views
exclude transitive plugin dependencies
I've installed the asynchronous mail plugin into a Grails 2.1.4 application. This plugin has a dependency on version 2.1.1 of the Hibernate plugin, whereas my app depends on version 2.1.4 of the ...
0
votes
2answers
24 views
Is there risk of unavailable sources in composer-based project?
When putting together a PHP project with composer, on installation / deployment, composer would fetch the dependencies usually from their original sources.
This could lead to problems when deploying, ...
1
vote
1answer
46 views
Does Ivy dependency resolver same as Maven dependency resolver?
I read official manuals about dependency resolution in Maven and Ivy:
http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
...
2
votes
2answers
66 views
How to distribute an open-source jar with dependencies?
I'de like to distribute a Java package that I've written under some permissive license.
The resulting speedytools-0.1.jar has some common Java dependencies like Apache Commons and Guava.
What is ...
0
votes
1answer
68 views
Gradle dependency resolution
I have an issue with how gradle resolves my dependencies.
I have four repositories that I need to investigate for different jars, five counting Maven central. Thus my repo statment in gradle.build ...
1
vote
1answer
28 views
Gradle Plugin resolve artifact
Is it possible for a Gradle plugin to resolve an artifact on its own? I know that in Maven, plugins can inject the Aether RepositorySystem and use that to download artifacts (That's how the Appengine ...
2
votes
1answer
83 views
How do Bower and NPM couple together?
So to preface my question, I'm coming from a Java back-end developer perspective, where we use Maven to build. I have worked on testing on a server-side Node project we recently developed, but now ...
5
votes
2answers
172 views
Solving Maven dependency convergence issues
I use the maven-enforcer-plugin to check for dependency convergence issues. A typical output would be:
[WARNING] Rule 1: org.apache.maven.plugins.enforcer.DependencyConvergence failed
with ...
2
votes
2answers
53 views
Using Gradle Prevent 3rd Party Library from being on Compile Classpath
I have a multi-project Gradle build. I have Sub-Project-A that depends on Sub-Project-B. Sub-Project-B has a compile time dependency on SLF4J. I do not want Sub-Project-A to be able to compile against ...
1
vote
1answer
49 views
R & Makefile: how to inherit dependencies?
I use a Makefile to byte-compile my R files (mostly to detect potential problems with the code). When compiling a file, I load its library requirements and loadcmp its local dependencies:
R = R ...
1
vote
1answer
36 views
ivy: resolve only compatible release with version range
I have a common component that is under constant development. many projects depend on this component. Right now, i use rev="latest.release" for the dependency. But that might break the build, consider ...
1
vote
1answer
30 views
JavaScript dependency management for WordPress?
I am going to write a small charting library (with chart types such as bar, pie, line etc.) to be used in a WordPress context.
The library might depend on external libs such as D3.js, underscore.js ...
0
votes
1answer
26 views
Finding dependecies between modules of a legacy ANT project for migration to IVY
I am dealing with a project using using ANT to build the source code into a EAR. The project over couple of years has grown to a mammoth size, more than fifty modules, and not surprisingly it takes 2 ...
0
votes
1answer
26 views
In Maven is there a way to say, “Bring in B instead of A”?
I have a project that has N dependencies that all have a dependency on some library A (say commons-logging) and I want to use some other library B (say jcl-over-slf4j, which is billed as a replacement ...
0
votes
1answer
38 views
Java webapp code moved to library cannot resolve HttpServletRequest
I recently moved a bunch of classes from a webapp to some standalone library.
Eclipse complained that HttpServletRequest was not resolved, so I added Web App Library to my Java Build Path/Libraries ...
0
votes
0answers
64 views
Dependency Management issue in Intellij idea 12.0.4
I am facing problem with dependency management.
I am using Intellij12.04.
Under a project i have two modules a.b.c.somebusiness and a.b.c.tests. The module a.b.c.tests is dependent on ...
1
vote
1answer
56 views
Using absolute paths for build dependencies
Currently we use Source Safe and start migration to Subversion.
All external SDK(> 500 MB) hold in Source Safe now, and I look for way to move them from VSS
to some repository.
We have C++ (mostly), ...
0
votes
2answers
74 views
Open source code sharing and dependency management Java for the rest of us [closed]
I am new to Java and I come from Ruby and I have a question about how can we easily share code we develop so anyone can use them. So far I have been using Maven to resolve dependencies but all of them ...
3
votes
1answer
60 views
Clojure module dependencies
I'm trying to create a modular application in clojure.
Lets suppose that we have a blog engine, which consists of two modules, for example - database module, and article module (something that stores ...
3
votes
1answer
71 views
javascripts function dependency graph?
Is there a program/tool that can generate function dependency graph for javascripts? Basically, the input should be a folder of javascript files, then the output is a nice graph that show all the ...
0
votes
0answers
19 views
Assembly dependencies and versioning numbers
Can somebody confirm that I understood some .NET dependency issues correctly?
I have written a small library L that uses json.net. Library L is referenced (as a dll) in my project P. Since I can't ...
1
vote
2answers
22 views
Inject local formulae into brew
I've got a project with complicated dependencies, and I'd like to make it easier for other developers to grab them. I've got a Capfile, Gemfile, Guardfile, Procfile, and Rakefile, so I thought... why ...
0
votes
0answers
64 views
View dependency/composition visualization in ruby on rails
I was working on a big web project with multiple pages where we would reuse certain subviews in different situations. We created a custom tool that parsed source comments and created a freemind mind ...
0
votes
1answer
55 views
Should i still use Nexus Repository Manager even if I am the only developer in my network?
I recently wanted to integrate Nexus to my home-based Java Project, just to learn what it is good for. As i read from the posts here, and from the nexus Website, its main usage aim is:
Maven Central ...



