com.github.tix320.plugins.jimage.jpakcage.MacOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimage-maven-plugin Show documentation
Show all versions of jimage-maven-plugin Show documentation
jlink and jpackage maven plugin
The newest version!
package com.github.tix320.plugins.jimage.jpakcage;
import java.util.List;
import com.github.tix320.plugins.jimage.common.Options;
import com.github.tix320.plugins.jimage.common.ValidationException;
/**
* @author : Tigran Sargsyan
* @since : 02.04.2021
**/
public class MacOptions implements Options {
@Override
public List toArgs() throws ValidationException {
throw new UnsupportedOperationException("Not implemented yet for linux");
}
}