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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to