de.akquinet.jbosscc.guttenbase.hints.ZipExporterClassResourcesHint Maven / Gradle / Ivy
package de.akquinet.jbosscc.guttenbase.hints;
import de.akquinet.jbosscc.guttenbase.export.zip.ZipExporter;
import de.akquinet.jbosscc.guttenbase.export.zip.ZipExporterClassResources;
/**
* When exporting to e JAR/ZIP file we allow to add custom classes and resources to the resulting JAR.
*
* This allows to create a self-contained executable JAR that will startup with a Main class customizable by the framework user.
*
*
* © 2012 akquinet tech@spree
*
*
* @Applicable-For-Target
* @Hint-Used-By {@link ZipExporter} to add custom classes to the generated JAR and configure the META-INF/MANIFEST.MF Main-Class entry
* @author M. Dahm
*/
public abstract class ZipExporterClassResourcesHint implements ConnectorHint {
@Override
public Class getConnectorHintType() {
return ZipExporterClassResources.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy