Tagged Questions
5
votes
3answers
153 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 ...
3
votes
1answer
369 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 ...
2
votes
2answers
56 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
3answers
570 views
m2eclipse does not show workspace project dependencies but shows transitive dependencies
I am having trouble with m2eclipse.
I am using Eclipse 3.6.2, m2eclipse 0.12.1 and m2extras for subclipse 0.12.0 and for wtp 0.11.1.
I have projects A(jar packaging), B(jar) and C(war). I have all ...
2
votes
2answers
418 views
Maven missing transitive dependency
I have a maven project with a dependency (datanucleus-db4o). This dependency has itself a dependency on db4o (db4o:db4o:jar:7.12.126.14142-all-java5).
Now maven says:
09.09.10 19:43:09 MESZ: ...
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
3answers
180 views
Eclipse Maven dependency doesn't find
I have add to pom.xml of my project repository:
<repository>
<id>java.net</id>
<name>java.net</name>
...
1
vote
2answers
100 views
Does Eclipse do a binary-compatibility-check of jars as they are added to a project?
While I was singing the praises of Maven's dependency management, an Eclipse user told me (an IntelliJ user) they don't need stuff like that because any time they add a jar to a project Eclipse will ...
0
votes
1answer
19 views
Missing artifact log4j:log4j:bundle:1.2.16 when using Maven in Eclipse simplistic example
I have created simple project from maven-archetype-quickstart under Eclipse Indigo, then I went to pom.xml gui editor and in dependencies tab added dependency on log4j-1.2.16 by search in appropriate ...
0
votes
3answers
18 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
44 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
110 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 ...