com.excelsiorjet.JetCompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excelsior-jet-maven-plugin Show documentation
Show all versions of excelsior-jet-maven-plugin Show documentation
Excelsior JET Maven Plugin provides Maven users with an easy way to compile their applications
down to optimized native Windows, OS X, or Linux executables with Excelsior JET.
/*
* Copyright (c) 2015, Excelsior LLC.
*
* This file is part of Excelsior JET Maven Plugin.
*
* Excelsior JET Maven Plugin is free software:
* you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Excelsior JET Maven Plugin is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Excelsior JET Maven Plugin.
* If not, see .
*
*/
package com.excelsiorjet;
/**
* Excelsior JET "jc" tool executor (Java AOT compiler) utility class.
*
* @author Nikita Lipsky
*/
public class JetCompiler extends JetTool {
static final String JET_COMPILER = "jc";
public JetCompiler(String... args) throws JetHomeException {
super(JET_COMPILER, args);
}
public JetCompiler(JetHome jetHome, String... args) {
super(jetHome, JET_COMPILER, args);
}
}