
net.flexmojos.oss.plugin.air.packager.LinuxRpmPackager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmojos-maven-plugin Show documentation
Show all versions of flexmojos-maven-plugin Show documentation
With this maven plugin Flex3/AS3 sources can be compiled into a SWC or SWF package.
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