java - Is it possible in eclipse to add a set external jar to all projects automatially? -


this purely personal work. messing around stuff doesn't bother me if cause problems others trying use code.

basically want allow of projects able import common jar use same way can done in built jars in java.

for example

import javax.swing.*; import common.stuff.*; 

i able without having import external jars on every project make.

thanks in advance :)

i'm not sure possible archive default eclipse settings, can next trick:

  1. go window -> preferences
  2. click java -> installed jres
  3. find default jre, click edit
  4. click add external jars

so you'll add libraries want in every project putting them default jre libraries.


Comments