You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Kevin Krumwiede <kj...@gmail.com> on 2013/04/06 06:17:51 UTC

osxappbundle-maven-plugin

I'm not a Mac user and I'm new to Maven, so I'm completely out of my
element here.

I'm trying to use osxappbundle-maven-plugin to build app bundles on
Linux.  The bundle I produced doesn't appear to do anything at all.
My app doesn't start, but there are no error messages.  I think it may
have something to do with my info.plist settings, but I have no idea
what the plugin expects.

Does anyone have any experience with this plugin?  Could I ditch it
and build an app bundle using a custom assembly descriptor?

~K

Here's how I'm using it:

<plugin>
	<groupId>org.codehaus.mojo</groupId>
	<artifactId>osxappbundle-maven-plugin</artifactId>
	<version>1.0-alpha-2</version>
	<configuration>
		<mainClass>krum.weaponm.WeaponM</mainClass>
		<jvmVersion>1.6+</jvmVersion>
		<javaApplicationStub>${basedir}/osx/JavaAppLauncher</javaApplicationStub>
		<iconFile>${basedir}/osx/WeaponM.icns</iconFile>
		<zipFile>${project.build.directory}/${project.build.finalName}-osx.zip</zipFile>
	</configuration>
	<executions>
		<execution>
			<phase>package</phase>
			<goals>
				<goal>bundle</goal>
			</goals>
		</execution>
	</executions>
</plugin>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org