jarbundler

What to do when your ant build process craps on your Version Control

断了今生、忘了曾经 提交于 2019-12-24 05:48:46
问题 So I've got a nice Java project, build with Ant to a /dist folder. The whole project is under version control, so I can deploy the latest version just by 'svn export' on the path to the dist folder. But my build keeps deleting the .svn folders inside my dist folder, and all its dependents, because it cleans out the folder when building instead of just overwriting. The precise culprit is JarBundler, the Ant task that builds my mac.app bundle - It deletes the whole bundle's folder before

How do I pass a file as argument to my Java application created using JAR Bundler?

本秂侑毒 提交于 2019-12-22 04:51:54
问题 I would like to associate a specific file type with my application, so when I double-click one of the files of this specific type, my application opens. This works just fine, but the file I double-clicked does not get passed as an argument to my program. If I for instance associate my application with txt files and I double-click todo.txt , my application opens, but I have no idea which txt file I double-clicked. From what I can read, this is how it's supposed to work on OS X, and instead of

How do I pass a file as argument to my Java application created using JAR Bundler?

让人想犯罪 __ 提交于 2019-12-05 04:13:50
I would like to associate a specific file type with my application, so when I double-click one of the files of this specific type, my application opens. This works just fine, but the file I double-clicked does not get passed as an argument to my program. If I for instance associate my application with txt files and I double-click todo.txt , my application opens, but I have no idea which txt file I double-clicked. From what I can read, this is how it's supposed to work on OS X, and instead of relying on the default behaviour (how it works on e.g. Windows), I should use ApplicationListener

Why is Jar Bundler gone in Mac OS X Mountain Lion 10.8.2

假装没事ソ 提交于 2019-11-28 05:06:17
There was a application from Apple called Jar Bundler which got distributed by Apple with Xcode in the past. The purpose of Jar Bundler was to create Mac OS X application bundles ( *.app directories) for Java applications until version 6 (1.6.x) for Mac OS X user convenience.​​​​​​​​ As of now, you can still get JDK 1.6.0_43 from Apple aka Java for OS X 2013-002 Developer Package Mar 4, 2013 for the current Mac OS X Mountain Lion 10.8.2 via https://developer.apple.com/downloads/index.action# but you cannot get Jar Bundler . I'm using an up to date Mac OS X 10.8.2 and up to date Xcode 4.6

Why is Jar Bundler gone in Mac OS X Mountain Lion 10.8.2

醉酒当歌 提交于 2019-11-27 00:47:33
问题 There was a application from Apple called Jar Bundler which got distributed by Apple with Xcode in the past. The purpose of Jar Bundler was to create Mac OS X application bundles ( *.app directories) for Java applications until version 6 (1.6.x) for Mac OS X user convenience.​​​​​​​​ As of now, you can still get JDK 1.6.0_43 from Apple aka Java for OS X 2013-002 Developer Package Mar 4, 2013 for the current Mac OS X Mountain Lion 10.8.2 via https://developer.apple.com/downloads/index.action#

JAR Bundler using OSXAdapter causing application to lag or terminate

大憨熊 提交于 2019-11-26 00:18:32
问题 I\'ve created a simple Java application that each second for for 10 seconds consecutive seconds adds a new row to a JTable . It consists of three classes. The main class that gets called once the program is started public class JarBundlerProblem { public static void main(String[] args) { System.err.println(\"Initializing controller\"); new Controller(); } } A controller that creates the GUI and alters it through doWork() public class Controller { public Controller() { doWork(null); } public