Tagged Questions
11
votes
2answers
2k views
How to deploy OSGi apps and dependencies?
OSGi seems to have an excellent benefit of having small deployable artifacts by not wrapping dozens of JAR dependencies into a lib directory. However, I can't find anything that tells me an easy, ...
6
votes
4answers
146 views
Keeping a library dependency-free
I have a small Utility library containing some useful utility methods which have been fully unit-tested. At the moment, my library has no external dependencies. I am toying with the idea of adding ...
6
votes
2answers
73 views
How to handle major framework/dependency upgrades?
Looking for some best practices on handling a major dependency upgrades within a project, assuming the use of a dependency management tool(e.g., Maven 2).
Specifically, I'm interested in:
How to ...
5
votes
2answers
78 views
Are there technical reasons to avoid creating highly tangled package dependencies in large Java projects?
I'm new to modern Java compilers and Virtual Machines, so I'm curious, what technical issues do large Java projects (5000+ sizable classes) encounter, during compilation and at runtime, as the gordian ...
5
votes
3answers
148 views
Finding out all conflicting packages/classes of referenced jars in an Eclipse project
I am currently dealing with a huge Eclipse project (not written by me). This project doesn't use any dependency management tools. It references hundreds of JARs.
Some of these JARs contain same ...
5
votes
3answers
211 views
Are we heading for jar hell in java platform similar to dll hell?
Last night I was trying to put a simple tutorial to build an application using the stack - Spring (2.5) + JPA (1.0) + Hibernate (downloading for first time, so didn't know which version to use). ...
4
votes
4answers
280 views
How to remove the dependency on a Java enum's values?
[Mind the gap: I know that the best solution would be to get rid of the enum completely, but that's not an option for today as mentioned in the comments, but it is planned for the (far) future.]
We ...
4
votes
5answers
1k views
3
votes
1answer
360 views
Use dependencies from Eclipse P2 repository in a regular Maven build?
I'd like to use dependencies from a remote Eclipse P2 repository in a "regular" Maven 3 build (e.g. JAR or WAR packaging) - all without converting the P2 repo to a local Maven repo (which is what ...
3
votes
2answers
414 views
Sort maven dependencies in Eclipse
Just wanted to know if it is possible in Eclipse to sort Maven dependencies by alphabetical order?
It's bothering me to have a list of 200 jars not ordered... :(
3
votes
7answers
191 views
Java dependencies during development and deployment
I have a general question on what is the proper way to manage your compile and deployment jar dependencies. I typically lay out the dev directories like the following for a simple ...
2
votes
1answer
70 views
Maven:how to check which jars are not being used at all
We have a multiwar project and with various people working on the project a lot of times, lots of unused jars are still specified as dependencies, is there any way , to check which jars are not used ...
2
votes
2answers
54 views
Eclipse maven to manage only dependencies and nothing more
Is it possible for maven plugin to manage only dependencies and nothing more.
I work with "strange" maven project, and want Eclipse/maven plugin only to read dependencies from pom.xml and add it to ...
2
votes
1answer
114 views
RmiProxyFactoryBean + Autowired(required=false)
I have 5 projects - 4 of which are run on the console (say A,B,C and D) with java -jar A.jar etc and 1 web application (E). The web application is deployed on a number of isolated servers some of ...
2
votes
3answers
175 views
Correct way to check Java version from BASH script
How can I check whether Java is available (in the PATH or via JAVA_HOME) from a bash script and make sure the version is at least 1.5?
2
votes
2answers
141 views
How to Reverse Dependency for Class Factory moved to a Library
The following code works very well when all involved classes are in the same project (determineSubClass is a member of BaseClass):
protected static BaseClass determineSubClass(String p1, int p2, ...
2
votes
1answer
220 views
Declaring a Test Dependency in Play!
Is there a way to declare a test dependency in the dependencies.yml file for the Play! Framework? I don't see any information about test dependencies in the documentation.
For example, I may want to ...
2
votes
4answers
59 views
Determining which jars a project actually requires
I've inherited a project (non-mavenized) which has a lib folder with approx 45 .jar's within it.
I'm fairly certain that not all of those jars are required.
Is there a way I can determine from the ...
2
votes
4answers
420 views
Does something like Sprocket exist for Java
Sprocket is a Ruby library for managing JavaScript dependencies. It makes it possible to declare dependencies in specially formatted comments in the JavaScript files, and have all the required files ...
2
votes
1answer
94 views
Choosing the right version of Apache Commons Logging
I've got dependencies on several Apache TLPs (Top Level Projects) like Apache Axis, Commons HttpClient, Commons DBCP, Commons Transaction etc.
Each of these projects has a dependency on JCL (Commons ...
2
votes
6answers
389 views
Should I use Eclipse plug-ins (or OSGi Bundles) as a plain dependency management tool?
once again it has happened... I joined a new project, composed of several plain Eclipse Java Projects, with interdependencies, all managed through the Project build path. I find this all a bit of a ...
1
vote
4answers
80 views
Dependency in Maven
I am really new to maven. I am bit confused about the dependency feature. I know that I can add dependency in the pom file like this
<dependency>
<groupId>org.slf4j</groupId>
...
1
vote
0answers
33 views
How to get JVM use diffrent version of jars required in application
In application where it requires Spring 2.0 jar and wants to interface with webservice but client.jar provided by webservice host require spring3.0 jar.. so is there any way to implement both ...
1
vote
2answers
656 views
Find hidden dependencies in Ivy
I'm using Apache Ivy + IvyDE for getting my project's dependencies, which are:
<dependency org="com.google.guava" name="guava" rev="r08" />
<!-- logging -->
<dependency ...
1
vote
3answers
1k views
How to set order of repositories in Maven settings.xml
I have 3 repositories in my settings.xml because I need artefacts from all of them. Whenever a dependency is not found, Maven tries
Downloading: ...
1
vote
1answer
441 views
How do I override the spring framework version in Spring Batch?
I'm starting a new project with Spring Batch 2.1.6.RELEASE and I use Maven for depemdency management.
By default, it imports spring framework 2.5.6, but I'd like to use 3.0.5.RELEASE instead.
This ...
1
vote
1answer
33 views
Are there any libraries w/ public API that model versioned SoftwareComponents w/ dependencies on other Versioned components
Firstly let me say yes i know about Ivy and Maven and that internally they have and do model dependencies w. names and version numbers. Internally they have APIs that allow the querying to find all ...
1
vote
1answer
94 views
1.4 Commons-DBCP being brought in instead of 1.3
I have a strange situation. In jar A, I explicitly bring in version 1.3 of commons-dbcp. In jar B, I have a dependency on jar A. However, when I bring in the jar A dependency in jar B, my maven ...
1
vote
2answers
929 views
Maven POM dependencies to ivy.xml file
Is there a maven plugin which i can use to convert the maven pom dependencies including transitive dependencies to an ivy.xml file?
1
vote
1answer
371 views
Managing Java dependencies in a Grails application?
I'm trying to adopt my development from Spring/Maven2/Tomcat -> Grails, and I'm wondering if there's an easy way to manage dependencies in grails separate from maven. Maven does a lot of the magic ...
0
votes
3answers
11 views
Missing artifact com.sun.jdmk:jmxtools:jar:1.2.1
I have created simple project from maven-achetype-quickstart under Eclipse Indigo, then I went to pom.xml gui editor and in dependencies tab added dependency log4j by search in appropriate dialog. Now ...
0
votes
2answers
38 views
Shortest way to see Maven's supremacy in Eclipse?
Suppose I have created an empty Maven project in Eclipse. What is the shortest way to observe Maven's ability of automatic jar downloading and dependency checking? For example, I need to use Swing or ...
0
votes
1answer
24 views
Is there a way to specify dependencies for a newly created sourceset in gradle?
In gradle i have created a new sourceset for servicetesting like this
sourceSets{
servicetest{
java.srcDirs = [//path to servicetests]
}
...
0
votes
1answer
47 views
Maven Dependency Convergence
The site generated for a multi-module Maven project contains a "Dependency Convergence" section, which is useful for detecting dependency conflicts.
In the site report for a simple (i.e. jar package) ...
0
votes
1answer
43 views
java_import already initialized constant
I just started using JRuby and I create a small test file:
require 'java'
java_import java.io.File
f = File.new ARGV[0]
When I run the program like so: jruby test.rb file.txt
I get the following ...
0
votes
1answer
75 views
Gradle: How to manage circular dependency on a testing-utility
I'm in the process or setting up an automated build-test-publish cycle for my Java project with Gradle and Jenkins. AppTestFramework is a utility that I've written for recording, scripting, and ...
0
votes
5answers
179 views
maven fails to resolve dependency
I have multi module maven project.When I try to build site, e.g. execute maven site on parent project it fails to resolve dependency to one of modules.
But if I just compile (mvn clean compile on ...
0
votes
2answers
260 views
How to manage maven sub projects not in the same directory structure?
I have a few maven projects which share some common settings - repositories, plugins and common dependencies, from the parent pom.xml.
I want to move the child projects now to separate svn location, ...
0
votes
1answer
109 views
How to manage classpath in eclipse for one project and two build targets
I have Java application project in eclipse. This project contains the one abstract class and two implementations+GUI. In haves two classes with main methods that launches GUI with one of the ...
0
votes
1answer
84 views
Using jarjarlinks to include only used classes in a jar
I have an application that makes use of about 20 external jar files. In order to package everything up into a single file for distribution, I've been unjaring all the externals into a particular ...
0
votes
0answers
223 views
Dependency project jar (maven) into common project in netbeans
i have a java project in maven, and some other projects in netbeans that aren't maven. The project that is in maven is used by all other projects. But, they are common projects and can't include a ...
0
votes
2answers
84 views
How to isolate an API's dependencies from the main program where it is used?
I have a system for which I am creating a plugin through a well defined access point. However the plugin in question uses some jar that the framework also uses but of a different version.
The code ...
0
votes
1answer
309 views
How do I get Ivy to copy the dependencies to the lib directory when using it from the command line?
I have the following command:
java -jar ...\ivy-2.2.0-rc1.jar -ivy ...\ivy.xml
Which I am expecting to resolve the dependencies and copy them to the lib folder of my project.
Ivy seems to resolve ...
0
votes
3answers
591 views
Get ivy:retrieve to not copy a jar into two configurations?
I'm trying to set up my ant build so that the targets which run Ivy functions are completely separated from the ones that the continuous build and most developers run. I want one target to download ...
0
votes
1answer
2k views
How does Apache Ivy resolve the variables in artifact patterns provided in the ivysettings.xml file?
If my ivysettings.xml file includes:
<url name="com.springsource.repository.bundles.external">
<ivy ...
-1
votes
3answers
255 views
Maven 1.0 Missing Dependency
I'm trying to setup a development environment for developing Atlassian Jira 3.13 plug-ins. The process is described on Atlassian's website, here. Unfortunately, Jira 3.13 is a bit out of date and as ...