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
3
votes
2 answers

Is there an easier way to change build paths in Eclipse?

I just want to know if there is an easier way to change the build path of the .jar files and other libraries in Eclipse when I import a project from another computer? Lets say my path to the m2 file is: C:\Users\Bill\.m2\repository but the same path…
Vrankela
  • 1,162
  • 3
  • 16
  • 39
3
votes
1 answer

How to add libraries to Wildfly Application Server using module?

I want to load the Application server Libraries in Java Build Path in Eclipse, I have 5 applications in Eclipse which shares common libraries, I can't put all the libraries in each project lib folder, so i want to add the libraries in Wildfly…
Raj Kumar Samala
  • 561
  • 12
  • 31
3
votes
1 answer

Where should I specify the native libraries for my Java application?

I know that JVM use the java.library.path property to locate the native libraries at run time. I am trying to configure Eclipse with the native dependency location. But there are many places in Eclipse->Project Properties->Build Path I can specify…
smwikipedia
  • 61,609
  • 92
  • 309
  • 482
3
votes
3 answers

Change java build path for multiple projects in Eclipse

In Eclipse, I have a libs project. This project has a test.jar file. I have 15 other projects in eclipse that use test.jar under Java Build Path/Libraries. New versions of test.jar are made every month, and the name will change (test1.jar,…
TestRaptor
  • 1,305
  • 8
  • 24
  • 42
3
votes
1 answer

Compile warnings setting on java buildpath in eclipse reverts after maven "update project"

Whenever I do a maven update project (alt+f5), the setting "Ignore optional compile problems" revert to "No". This annoys the heck out of me since it is generated sources which i cant fix. Anyone know how to make it stick?
Viktor Mellgren
  • 4,318
  • 3
  • 42
  • 75
3
votes
0 answers

What's the meaning of " path="org.eclipse.jst.j2ee.internal.web.container" " in a .classpath file?

I am trying to understand how Eclipse Build Path works. It seems what I configured in the Build Path window is stored in the .classpath file. I see entries like these in this file:
smwikipedia
  • 61,609
  • 92
  • 309
  • 482
3
votes
1 answer

Java Build Path - Add External JARs' and Add Variable

What is the difference between Java Build Path - Add External JARs Button and Add Variable Button Functionality, Why its required. Please explain in detail.
minil
  • 6,895
  • 16
  • 48
  • 55
3
votes
1 answer

How to install Slick2d?

Hi I'm trying to create a game using the LWJGL library and the Slick2D game library however when I attempt to run it I get an error. Here is my code: package test; import org.newdawn.slick.AppGameContainer; import…
3
votes
1 answer

Project is Missing Required Source Folder: "src_ex_common"

I try to open the sample project from google opensource as provided in the following link: https://android.googlesource.com/platform/packages/apps/Calendar.git I have imported the 5 git repositories as required in the program but there is still a…
Antoine Murion
  • 773
  • 1
  • 14
  • 26
3
votes
1 answer

How to edit build path entries in Eclipse?

So I have been having trouble with the Android Support Library with respect to a Jar mismatch or the like where for some reason I was having trouble extending the ActionBarActivity as it was giving the error that appcompat_v7.apk could not be…
cshadowstar
  • 303
  • 2
  • 17
3
votes
5 answers

LoggerFactory.getLogger cannot be resolved to a type

I setup a basic Java program. I am following this tutorial and have this exact code: import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class HelloWorld { public static void main(String[] args) { Logger logger =…
smuggledPancakes
  • 9,881
  • 20
  • 74
  • 113
3
votes
2 answers

Dart Package Management via dart2js

I'm learning Dart and its dependency manager pub and am having a tough time seeing the "forest through the trees" here. Say I want to use Polymer.dart in my project. So, in my project root, I create the following pubspec.yaml: name:…
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756
3
votes
3 answers

Android and Eclipse - java.lang.NoClassDefFoundError with project dependency

I'm trying to build a abstract classes in one project as a template and to implement them in another. However when trying to run an Activity that implements the template Activity, the NoClassDefFoundError pops up. I've added the template project to…
scf
  • 396
  • 2
  • 19
3
votes
1 answer

Java classpath folder missing in project but exists in Windows directory structure for project

I downloaded the application server Java source code from the i2b2.org site and compiling it for deployment. This application runs on top of JBoss. There are 8 project folders in the workspace that I switched to in Eclipse (root directory of where…
JustBeingHelpful
  • 18,332
  • 38
  • 160
  • 245
3
votes
1 answer

Pass project build path to External Tool in Eclipse

I would like to set up an External Tool in Eclipse that does some custom compilation of classes in the project by calling javac directly. For this, I need to pass javac the classpath parameter so it knows where to go looking for dependencies. Is it…
Markus A.
  • 12,349
  • 8
  • 52
  • 116