Questions tagged [buildpath]

This tag refers to build path settings for a Java project in Eclipse IDE. You can reach this option through the project properties (Project > Properties > Java Build Path) from the context menu on a created project or the File menu of the workbench.

This tag refers to build path settings for a Java project. You can reach this page through the project properties (Project > Properties > Java Build Path) from the context menu on a created project or the File menu of the workbench.

More info at Eclipse web site

409 questions
1
vote
2 answers

Build path error in the attempt of implementing the Facebook Login

I'm trying to implement the Facebook login in my app using Eclipse, so I started off by going through the tutorials on Facebook Developers. However, I'm encountering an error in my build path, so any help would be appreciated. In the Android…
1
vote
1 answer

Automatic Compiler Compliance Choice based on Build Path in Eclipse? (Or Vice Versa?)

My default JRE in Eclipse is JDK 1.7. I also have JDK 1.6 for projects that don't need Java 7. My default compiler compliance level is naturally JDK 1.7, in accordance with the default JRE. Now, for projects that use Java 6 (configured in Project…
rolve
  • 10,083
  • 4
  • 55
  • 75
1
vote
1 answer

Using a custom library with Eclipse is throwing a ClassNotFoundException

I am starting web development with JSP, and I have been working on my application or a while. I have a custom logging class, which is in my personal library. I don't want to export the library to a jar file every time I make a change, so I have…
mattbdean
  • 2,532
  • 5
  • 26
  • 58
1
vote
1 answer

Google Custom Search API for android ,class not found

I need to search google and get back results using my android app. I tried using Google custom search API. It worked fine in java in my desktop. But the same code gives 09-07 02:03:25.101: E/dalvikvm(959): Could not find class …
Sai Sunder
  • 1,001
  • 1
  • 11
  • 16
1
vote
1 answer

Eclipse forgets build path variables

I have declared in my project's build path the variable MAVEN_REPO which points to my maven repository. After, let's say, a week Eclipse "forgets" it and my project doesn't want to build. The variable is still visible but not resolved and libraries…
Adam Sznajder
  • 9,108
  • 4
  • 39
  • 60
1
vote
1 answer

Eclipse buildpath automatically taking all JARs of a linked directory

This issue is a variation on the one described here: Eclipse buildpath automatically taking all JARs of a internal directory But instead of any local folder, I'd rather have a linked folder from another project be picked up automatically in the…
1
vote
3 answers

Unable to load Facebook SDK to Eclipse. Build Path Error

So I have not been able to even start coding for the app I want to build, I am having a really hard time getting the SDK set up for me to code based on it. Here is what I did: Downloaded Eclipse Downloaded the JDK, Android SDK, and ADT on Eclipse.…
daniel_c05
  • 11,438
  • 17
  • 60
  • 78
1
vote
2 answers

Importing a clone from github into Eclipse and build path errors

I'm trying to pull a project from git, in particular, this one: https://github.com/pocmo/Yaaic. It is a library for IRC clients in android which I wanted to use to put an IRC client into an android app. As you can see from the root directory of this…
xialu
  • 13
  • 1
  • 3
1
vote
1 answer

Build path in Rad

I have 10 projects in my ear project. I am using RAD. There is a web project in the same ear. I want to add few project to the build path of web project. I added it and it does not work but when I create a jar of the project and place it in…
Diyyu
  • 35
  • 3
1
vote
2 answers

Spring MVC Hibernate - Build path is incomplete

I was working on a spring mvc maven project and in initial stage I can across this error. in my servlet-context.xml, I am trying to generate "HibernateTransactionManager" bean which throws me this errr : error: "Build path is incomplete. Cannot…
user1324493
  • 15
  • 2
  • 5
1
vote
2 answers

Eclipse (probably) doesn't compile external jars

Suddenly, all my code depending on external jars doesn't work. For example: Jsoup.parse(str) gives: could not resolve type: org.jsoup.Jsoup And i'm 100% sure that it is in the build path. Maybe it happenned because I updated the ADT plugin and…
RE6
  • 2,684
  • 4
  • 31
  • 57
1
vote
1 answer

Java project unable to refer to another project

I am using Eclipse. I am building a RESTful project (WarehouseService), and it include another project (WarehouseEntity) in the build path. When WarehouseService instantiate an object of class StockTakeService from WarehouseEntity (like…
SPTin
  • 65
  • 1
  • 2
  • 10
0
votes
2 answers

Exclamation symbol on project name

I have a problem in running a new project which I downloaded from github. It shows exclamation sign just on project name as shown in below images it must be problem with build path but i dont know how to deal with it... thanks for help
Chirag Patel
  • 11,416
  • 3
  • 26
  • 38
0
votes
2 answers

Can I add predefined jars to WEB-INF/lib in Eclipse project?

When I am designing normal Java project in Eclipse, I can add predefined libraries to it's Build Path. Can I do the same way when putting jars into WEB-INF/lib folder of Web project? I.e. can I ask Eclipse to put some predefined library jars there?
Suzan Cioc
  • 29,281
  • 63
  • 213
  • 385
0
votes
2 answers

Is there a netbeans equivalent to "Native library location" in eclipse for jar files?

In eclipse you can add a native library location for each jar file in your project. I prefer this method to adding a -Djava.library.path to the VM arguments. Is there an equivalent in netbeans or am I stuck with the -D? This is related to this…
Luke
  • 3,742
  • 4
  • 31
  • 50