Questions tagged [jarbundler]

The purpose of `Jar Bundler` is to create Mac OS X application bundles (*.app directories) for Java applications until version 6 (1.6.x) for Mac OS X user convenience.

The purpose of Jar Bundler is to create Mac OS X application bundles (*.app directories) for Java applications until version 6 (1.6.x) for Mac OS X user convenience. Details can be found via Mac Developer Library.

28 questions
0
votes
0 answers

Bundled .app file is not running in /Application folder

I have bundled my.jar to Mac OSX .app file using jarbundler2.4 and using universalJavaStubApplication The generated .app is running on my Desktop folder but not running in /Application directory. I already tried changing the permission of file, yet…
Pawan Kumar
  • 231
  • 4
  • 11
0
votes
1 answer

the file created with the jarbundler from a jar has different behavior than the source jar

I create an mac app file from a jar using the jarbundler 2.3. i am having the following issue: when you access the application from the jar directly, it opens a specific folder placed near the jar file, in the same folder with the jar file but…
aurelianr
  • 538
  • 2
  • 12
  • 35
0
votes
2 answers

JAR bundler not found in MAC PC after installing JDK

I am developing an admin application in JAVA that is supposed to run in all platform. For this application I need to create an installer. But I am facing some problems in MAC. In order create installer in MAC I need to bundle JAR file. But I don't…
Naseef Chowdhury
  • 2,357
  • 3
  • 28
  • 52
0
votes
1 answer

How to bundle a Java application to a Mac OS X *.app bundle?

I am trying to bundle my Java application to an Mac OS X .app bundle. I am currently using appbundler and I followed Oracle's guide. The Ant task works fine in Netbeans and the corresponding .app package is built correctly (on Windows). But when…
salocinx
  • 3,715
  • 8
  • 61
  • 110
0
votes
1 answer

Mac osx 10.6.6 jar-blunder not collecting main class from javaFX jar packages

I am trying to make a Mac osX app bundle using jar-blunder on mac 10.6.6. ** I am using default ant task of NetBeans on windows to build the Jar file.(developing the project on windows). then transfer the jar file to mac osX to create the App…
Lalith J.
  • 1,391
  • 4
  • 16
  • 27
0
votes
1 answer

Getting path of java bundler on Mac

I have made an Mac application MyApp.app with Jar Bundler. Because I have an external jar, lib/AutoUpdate.jar that is in the same folder path as the MyApp.app, I need the current path of the MyApp.app to be able to run…
Grains
  • 950
  • 3
  • 16
  • 35
0
votes
1 answer

PackageMaker on Mac OS X with Java Applcation

Step 1: I have a Java application that I bundle into a .app file via Jar Bundler. The Java file relies on some folders, one of which is called "Config" Step 2: I right click MyApplication.app, select "Show Package Contents", and plot the Config…
CodeGuy
  • 28,427
  • 76
  • 200
  • 317
0
votes
2 answers

how to use a jar To create a mac application?

I created a java project, when I execute my application from eclipse it works without any problems and no exception. I created a jar to execute it works on the computer that I used for the development, I tried on another pc, it only works if I…
user2043602
  • 237
  • 2
  • 4
  • 15
0
votes
1 answer

Apple .app (build with Ant's JarBundler) won't run

I build my app with the following build.xml When I click on release/MyApp.app, it won't run!!! But when I do java -jar release/MyApp.app/Contents/Resources/Java/helloworld.jar the executable (a Windows) does come up, meaning the helloworld.jar is…
user1508893
  • 9,223
  • 14
  • 45
  • 57
0
votes
1 answer

How to package JMeter with Jar Bundler on Mac

I'm unable to use "Jar Bundler" on mac to create JMeter.app from ApacheJMeter.jar, I was wondering if anyone else had previous experience with configuring this tool? The problem for me seems to be that the lib folder being searched is set to an…
pulkitsinghal
  • 3,855
  • 13
  • 45
  • 84
0
votes
1 answer

Jar bundler -d32 vm arguments

I have created an application which uses 32bit libraries on my 64bit Mac Lion so to run my application I need to pass -d32 vm argument in eclipse and it works fine. I created runnable jar of application and it also works fine when I run jar from…
Sandeep Kumar
  • 13,799
  • 21
  • 74
  • 110
0
votes
1 answer

Using jarbundler ant task to add dependencies to the app

I have a Netbeans Java project. When I build my project it create a directory dist and dist/lib. It stores the Jar of the file in dist and other jar files on which the main jar file depends, in the lib directory. Now I want to create a release for…
Ankit
  • 6,772
  • 11
  • 48
  • 84
0
votes
1 answer

Jar bundler ANT task and working directory

There is a checkbox in Jar Bundler which allows to set working folder to inside package. Anybody knows how to do same thing using JarBundler ANT task? Thanks in advance!
Aleksandr Kravets
  • 5,750
  • 7
  • 53
  • 72
1
2