
net.dongliu.jpackage.model.JLinkLauncher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpackage-maven-plugin Show documentation
Show all versions of jpackage-maven-plugin Show documentation
Easy ways to create JPackage Images
The newest version!
package net.dongliu.jpackage.model;
/**
* A jlink launcher configuration.
*
* @author Gunnar Morling
*/
public class JLinkLauncher {
private String name;
private String module;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getModule() {
return module;
}
public void setModule(String module) {
this.module = module;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy