
net.dongliu.jpackage.model.JPackageLauncher 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 JPackageLauncher {
private String name;
// the properties file
private String file;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getFile() {
return file;
}
public void setFile(String file) {
this.file = file;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy