
net.dongliu.jpackage.util.ModuleInfo 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.util;
/**
* @author dongliu
*/
public class ModuleInfo {
private final String name;
private final String mainClass;
public ModuleInfo(String name, String mainClass) {
this.name = name;
this.mainClass = mainClass;
}
public String name() {
return name;
}
public String mainClass() {
return mainClass;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy