Tagged Questions
5
votes
0answers
113 views
Android Library Dependencies broken after SDK/ADT-Update
Today, I updated my Android SDK and Eciple ADT to the most recent versions (ADT Rev 22). After restarting Eclipse it is quite unhappy with the Build Paths whenever I reference custom libraries.
An ...
0
votes
0answers
14 views
Manually building Eclipse Inter-Project dependency tree
Is it possible to manually create an inter-project dependency tree using / parsing various files like .project, .classpath etc. for an eclipse project ( without using Maven etc. )?
We are working ...
0
votes
0answers
16 views
eclipse project dependency recovery after crash
I am using Eclipse helios in Ubuntu OS. It crashed and did not start up again. The .metadata/.log file had the following error: "An error occurred while automatically activating bundle ...
0
votes
1answer
42 views
maven don't work with me, is there any dependency missing?
I'm new to maven, I'm using it with eclipse on Windows 7. And I'm trying to use maven with my test project and here is my pom.xml file :
<project xmlns="http://maven.apache.org/POM/4.0.0" ...
0
votes
0answers
56 views
maven spring dependency issue
I have the following in my pom.xml.
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
...
0
votes
1answer
135 views
Adding jars to Tomcat classpath
I have an Eclipse project running on Tomcat, with my dependency jars sitting in the WEB-INF/lib directory. Everything is great. But the war file created on export is huge, and I'm going to need to ...
0
votes
0answers
38 views
What are the minimally necessary gradle commands after changes in imports
I have got a workspace consisting of about 30 projects.The workspace is supported by Gradle, projects are edited, built and launched in Eclipse.
When I want to make some non-trivial refactoring, it ...
0
votes
1answer
2k views
Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: UnresolvedAddressException
I have integrated Maven with Eclipse and trying to create a maven project. Every time i am trying to create project, its POM.xml shows error.
Multiple annotations found at this line:
- Plugin ...
0
votes
1answer
48 views
Eclipse adding the project overrides maven dependency
I have a maven project that uses other small projects. And I added them to master's pom file.
So my Eclipse project properties looks like following:
>Master project
>Java Resources
...
0
votes
1answer
148 views
How to reference a maven project in gradle project for eclipse?
I'm using eclipse and I'm new to gradle.
I have imported a maven project OrientDB into the eclipse workspace.
Then i created a new java project in this workspace, and a gradle build file.
How do I ...
0
votes
0answers
54 views
Android dependency not updating in Eclipse
I have two projects in Eclipse, one is Android Java, the other is regular Java. The regular Java is a dependency of the Android one. Specifically, I'm using libGDX to make an Android game.
If I ...
0
votes
1answer
41 views
Eclipse P2 dependend library plugin
the situation:
Product "P" is based on Feature "FA" wich is based on Plugin "PA" wich depends on Libray-Plugin "PL". I can export the whole product and everything works fine. Now I want to install ...
0
votes
1answer
340 views
An internal error occurred during: “Updating Maven Dependencies”
Whenever I run eclipse, I get the message:
An internal error occurred during: "Updating Maven Dependencies".
Lorg/codehaus/plexus/archiver/jar/JarArchiver;
I am running maven version 3.0.4, and ...
0
votes
0answers
66 views
Eclipse m2eclipse not picking up “provided” transitive dependencies
Trying to get Roboguice working in Eclipse which contains 2 Maven projects, Astroboy and Roboguice (let's call them A and B where A depends on B). My problem is that unit tests in A which work fine in ...
1
vote
2answers
90 views
Run doesn't build referenced projects in Eclipse
I have a project with two dependencies which I want to be built when I build my project. I did this by going to Project Properties->Project References and selected the two dependencies. When I make a ...
0
votes
1answer
99 views
Maven - Acceptance Testing a project packaged as a WAR file
I've been given the source code for an existing Java application (let's call it "WebApp") that needs to be tested . It's deployed into Glassfish as a WAR file. This is customer code so I'd like to ...
0
votes
0answers
48 views
Resolving Python dependencies in Eclipse/PyDev
I've got a Python project downloaded from Git here. I managed to import it in Eclipse but it's still missing a few things. The following lines are the guilty lines
from bson import ObjectId
from ...
0
votes
2answers
112 views
Xuggler generates error message
I was working on creating my first Xuggler media application. I was coding by watching their video on how to create the first media application.
Code
package demo;
import ...
2
votes
2answers
72 views
Why do we need `Imported Packages` when we have `Required Plug-ins` in eclipse plugin dependencies?
In developing eclipse application, the dependencies tab in MANIFEST.MF has two columns.
One is Required Plug-ins and the other is Imported Packages.
Why do we need Imported Packages when we have ...
0
votes
1answer
674 views
Maven 3 dependencies from parent POM not available to children in eclipse
I have a maven 3 project in eclipse who's structure is as follows. The app project serves as the parent project to all the other apps. I have included the pom.xml from the app project (first pom), and ...
0
votes
2answers
68 views
Why maven causes dependencies errors?
Why some maven dependecies in the .pom file are causing errors like: Missing artifact nonfree-lingpipe:lingpipe:jar:2.3.1? All dependencies are listed in the .pom file. In .m2 folder I have all ...
0
votes
2answers
172 views
For which Maven dependency scopes is the dependency included in the compiled project?
E.g. if I make the BukkitApi jar a dependency for a maven project with depenecy scope set to provided,compile,system, runtime or test
In which scopes will the bukkitAPI be included in the compiled ...
1
vote
1answer
45 views
Eclipse: Dependencies for .war generation
I have 3 projects
XXX.web : a Dynamic Web Project
XXX.persistence: a normal java project
XXX.t1: a normal java project
Projects 2 and 3 have other dependencies with jars inside of them.
Project1, ...
0
votes
1answer
202 views
Maven Dependency Errors in Eclipse
I am having issues with Maven Eclipse integration.
I am able to compile the project using Run as profiles and everything is fine from command prompt too
But in Eclipse Markers I am getting below ...
2
votes
1answer
219 views
Finding jar dependencies for eclipse/jdt in Java
I'm trying to compile Eclipse JDT - Abstract Syntax Tree (AST) and the Java Model - Tutorial using command line.
I came up with this command line based on the name match in plugins directory in ...
1
vote
2answers
4k views
setting up a maven project in Juno Eclipse
I recently upgraded my Eclipse to Juno and am struggling with the way maven dependencies are handled.
I installed the m2e plugin. Still, many of my projects started complaining about libraries ...
1
vote
1answer
76 views
Eclipse XML Formatting Backend Libraries
I am asking a follow-on question to help the OP from a SuperUser question which evolved into a programming question.
As you can see from the screenshots of Eclipse in my answer to that SU question, ...
1
vote
1answer
73 views
maven - inter workspace dependencies
i am using eclipse and maven integration.
maven install puts the resources to the local repositories. local repositories is divided into "local repository" and "workspace projects" as shown in ...
0
votes
1answer
111 views
How can I use Maven to build a web-app with dependencies on an Eclipse plugin built by Tycho? [closed]
We're using Xtext to create a DSL and want to do two things with it.
1) create an IDE/plugins for that DSL.
2) build a web-app which understands that DSL and does something with it.
And of course, ...
0
votes
1answer
102 views
Eclipse build techniques
I have been using eclipse for quite a while. I have used it with ant, maven and now with gradle. I understand that eclipse build (defaults to bin folder) and gradle keeps the built files in build ...
0
votes
3answers
82 views
Java: Tool to determine the dependents of every java class in a maven module
I wonder if its a trivial question, which i am not aware.
In a multi-module maven project, lets say that there is a 'common' module. For example, there are 5 modules out of which 1 module is common. ...
0
votes
1answer
79 views
Automatically update JAR in WAR dependency lib from second project in Eclipse workspace on build/deploy
I am working on a web service with a team using SVN.
The app is (currently) divided into 2 projects in Eclipse, Project A with controllers and views, and Project B with framework support and data ...
0
votes
2answers
108 views
maven 3 interproject depedency with war packaging
I have Eclipse Indigo and M2E plugin installed.
So essentially I have a standard maven web project (let's call it proj-service) that is built into a war file in the package phase. This all works ...
0
votes
1answer
368 views
Android Eclipse project compilation errors with maven provided dependency
I'm converting an android application to be maven-based
what I've done is:
Insert pom.xml
List item
copy java classes into main/java directory and make this directory
the source path
insert the ...
0
votes
0answers
640 views
Maven is not downloading jars
I'm using Maven but so after declaring dependencies , i can't find the jars .
So I'm getting the "cannot be resolved to a type" error
What's the cause , can it be internet connection problem?
Is ...
1
vote
3answers
794 views
ViewPagerIndicator Dependencies Missing
Using: Eclipse & ADT20
I am having issues using Jake Wharton's ViewPagerIndicator in a new project.
After following the instructions on Jake's github page I receive an error in my application ...
0
votes
0answers
278 views
My Maven Dependencies are ClassNotFound Exception or NoClassDefFoundError
Here again (I had to rewrite it to make it more comprehensive i guess):
I got project X and project Y. They are independant from each other. While project X is working with all hibernate ...
0
votes
1answer
62 views
Is there an Eclipse Plugin To Add a Dependency to a jar from SVN?
Is there an easy way to include a JAR as a dependency of a project from SVN in Eclipse. Like an Eclipse plugin or something like that?
I don't want to use Maven, it would be overkill for this ...
0
votes
1answer
525 views
Eclipse, How to add all dependencies of one project to another
I have a project in Eclipse which I built using Maven and it has hundreds of JARs as reference libraries. Is there a way to include all these reference libraries to another project?
1
vote
1answer
322 views
How to automatically attach source code for dependency in Intellij?
I have a project (built with Maven) which has many internal dependencies; some of these dependencies are built with Maven and sources can be deployed along with the binaries (and Javadoc) in the ...
2
votes
2answers
375 views
Maven dependency issue in eclipse
I have multiple related projects open in a workspace in eclipse. One of the projects has a maven dependency on the output jar from another project. In this project, any references to the classes in ...
5
votes
3answers
90 views
Bundling a non-open-source dependency with Maven
Suppose I have two Java projects in Maven / Eclipse:
An open source application hosted in GitHub
A small private library containing utility functions which is not open source (but which I do have ...
2
votes
3answers
2k views
Export of runnable Java Class to .jar file including only required dependencies [duplicate]
Possible Duplicate:
How to determine which classes are used by a Java program?
I have a Java project on Eclipse that contains a lot of Java classes. I want to export one of them to a .jar ...
0
votes
1answer
310 views
In Eclipse, how to search for a class in maven managed dependencies? [duplicate]
Possible Duplicate:
find pom dependencies by classname
When all my dependencies are managed by maven in eclipse, then how do I use something like Ctrl+ Shift+ T to search for a dependency?
...
0
votes
1answer
738 views
Maven and Eclipse: project build error dependency
I just started working with Maven, and I've ran into several issues.
The latest is that one:
Project build error: 'dependencies.dependency.version' for com.github.koraktor:steamcondenser:jar is ...
1
vote
1answer
18 views
Why spring dependency doesn't viewed?
I have installed STS, created simple console maven application. After I would like add springframework, but seems that master of adding dependency doesn't find nothing.
Should I fix some settings ...
3
votes
5answers
301 views
How do I get Eclipse and Maven to download the JARs I need?
I'm new to Maven and Eclipse. We have been using Netbeans and installing jars manually in our projects.
I thought the purpose of Maven was to download the required jars based on your dependencies?
...
0
votes
2answers
6k views
m2eclipse will not download any dependencies
I was hoping someone might be able to help.
On a brand new windows machine. I've downloaded and installed java jdk before downloading and running the latest version of eclipse (indigo).
From there ...
0
votes
3answers
138 views
Maven jar dependencies and relations
I tried to search for existing questions but cant find any - feels like my question is quite simple but probably because it's quite specific I cant find the answers anywhere.
Anyways - I have 2 ...
0
votes
2answers
457 views
Eclipse - How to give dependency between projects?
I have two java projects in eclipse. Second one is using first one's jar. When I try to navigate to first one's class from second one, it opens .class of that file. But I want to open the first one ...


