Search:

Type: Posts; User: andbin

Search: Search took 0.15 seconds.

  1. Replies
    7
    Views
    1,251

    [SOLVED] Re: Creating a jar File

    Eclipse has a "Fat Jar" plugin that can create a jar containing your classes/resources and all classes/resources from all dependencies.
    Technically it's possible to do this from command prompt but...
  2. Replies
    7
    Views
    1,251

    [SOLVED] Re: Creating a jar File

    First: it has no sense (and it's useless) that you put external jars into your jar. The JVM will not search jars into your jar!


    It's not correct that the jar contains the 'classes' directory. If...
  3. Replies
    7
    Views
    1,251

    [SOLVED] Re: Creating a jar File

    External jars must be declared into the manifest. The manifest should have a line like:

    Class-Path: lib/other1.jar lib/other2.jar

    The "lib" sub folder is just an example. Other jars must be...
Results 1 to 3 of 3