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

net.flexmojos.oss.plugin.air.packager.LinuxRpmPackager Maven / Gradle / Ivy

Go to download

With this maven plugin Flex3/AS3 sources can be compiled into a SWC or SWF package.

There is a newer version: 7.1.1
Show newest version
package net.flexmojos.oss.plugin.air.packager;

import org.codehaus.plexus.component.annotations.Component;

import java.io.File;

/**
 * Created by christoferdutz on 18.07.15.
 */
@Component( role = Packager.class, hint = "linux-rpm" )
public class LinuxRpmPackager extends DesktopPackager {

    @Override
    protected File getOutputFile() {
        return new File(request.getBuildDir(), request.getFinalName() +
                ((request.getClassifier() != null) ? "-" + request.getClassifier() : "")  +".rpm");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy