All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codename1.maven.buildWrappers.BuildMacDesktopMojo Maven / Gradle / Ivy

There is a newer version: 7.0.164
Show newest version
package com.codename1.maven.buildWrappers;


import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;

@Mojo(name="buildMacDesktop", requiresDependencyResolution = ResolutionScope.NONE,
        requiresDependencyCollection = ResolutionScope.NONE)
public class BuildMacDesktopMojo extends AbstractBuildWrapperMojo {
    @Override
    protected String getPlatform() {
        return "javase";
    }

    @Override
    protected String getBuildTarget() {
        return "mac-os-x-desktop";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy