vote up 3 vote down star
3

I'm using NetBeans 6.5 and for some reason it won't produce executable jar "out of the box".

I set my project to be the main project, defined main class in the project properties "run" menu and it works flawlessly when I press F6 to run it.

I looked at the manifest file and it indeed didn't define the main class there, and also omitted the library dependencies.



Am I missing something? Is there a way (other than manually altering the manifest file) to produce executable jar files?

EDIT: yes, I tried clean and rebuild and it produced the jar in the dist folder, still with the same menifest.mf

Manifest-Version: 1.0
Ant-Version: Apache Ant 1.7.1
Created-By: 10.0-b23 (Sun Microsystems Inc.)
flag

40% accept rate
Odd. Pretty sure NetBeans makes executable jars per default. When you run a project it even states so in the console output for me. Don't have NetBeans at work so I cannot really double check :( – willcodejavaforfood Mar 2 at 14:37
The manifest.mf in the project directory is not copied verbatim into the .jar file. The main-class attribute and any library paths are added when you "clean and build" the project. – mmyers Mar 2 at 14:42
Yes, it makes executable jars by default. Try clean and rebuild. – Joonas Pulakka Mar 2 at 14:44
Does NetBeans create a dist/ folder at all? – Zach Scrivena Mar 2 at 14:45
Did you extract that manifest from the .jar file? If so, that's really weird. I've never had a problem like this. – mmyers Mar 2 at 15:09

11 Answers

vote up 1 vote down

Did you clean the project and rebuild? It sound like you're doing it right. Heres some references just in case:

http://www.velocityreviews.com/forums/t141385-how-to-create-executable-jar-in-netbeans-ide.html http://dr.berkeley.edu/REM/wiki/index.php/Making_a_Java_executable_jar_in_Netbeans

link|flag
vote up 0 vote down

Strange indeed, it should do it out of the box including the classpath.

Did you upgrade from a previous version? When upgrading, NB will upgrade the project files but sometimes this migration is not done well and this kind of scenario's pop up. Just close the project, rename the nbproject dir to nbproject_old and do new project -> Java project with existing sources. Set the main class again and add dependencies and try again.

link|flag
vote up 0 vote down

Another approach entirely is to develop, run unit tests, etc. in NetBeans but then use a maven or ant script to do your "real" build. It seems like these kinds of build tools give you more control over how things are built, and it also lets you automate builds.

For maven, you can add entries to the manifest easily using the maven jar plugin:

http://maven.apache.org/plugins/maven-jar-plugin/

link|flag
vote up 0 vote down
goto the Files view....
Create a manifest.mf in the root directory.....

/project_folder
    build.xml
    manifest.mf(edit here)
    /dist
    /src
    /test
    /build
link|flag
Sorry, but I tried and NetBeans override what I specify in the manifest – Dani Mar 12 at 13:49
vote up 0 vote down

If you clean and build your project it should create the jar in the "dist" directory.

It should create the manifest.mf at the top level of your project directory.

link|flag
vote up 1 vote down

Hi,

I actually came across this page after running into the same issue, I edited the manifest.mf file but the changes weren't showing up in the jar MANIFEST.MF file. I found the issue that I was having and thought I would pass along the information just in case it's relevant.

What I was doing wrong was I didn't have the project I was working on set as the main project, so while I was editing the the correct manifest, I was compiling the wrong project.

So I suppose the short of the story did you check and see if you have the correct project selected for the manifest.mf file you are editing?

link|flag
vote up 0 vote down

Maybe you created Java Project with Existing Sources instead of Java Application?

I had similar problem and creating new Java Application and then manually copying src files solved the problem - everything worked "out of the box".

link|flag
vote up 0 vote down

I had the experience, that the build process is different, depending on the project type.

I suppose, you've created "Java Class Library" project.

So just create a "Java Application" project, then merge all classes to it.

Then, Netbeans will not override, but enhance the "manifest.mf" into the JAR.

Of course, it's a stupid Netbeans bug. Of course it should be possible to add main classes afterwards.

EDIT: Please see my other answer. It's easier.

link|flag
vote up 0 vote down

A better solution:

Edit nbproject/project.properties and add the entry:

manifest.file=manifest.mf

manifest.mf should be in project's root and contain just:

Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build

Works. Tested.

link|flag
vote up 0 vote down

Try this:

  1. Right click your project on the "Projects" panel, select "Properties"

  2. Click on "Run" in the new window.

  3. Edit the "Main Class:" field (click on Browse).

This way you will select the main class which is the entry point to your application and the Manifest will be created correctly.

KV.

link|flag
vote up 0 vote down

Interesting information might be here:

http://wiki.netbeans.org/FaqNoMainClass

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.