All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.martiansoftware.nailgun.builtins.NGVersion Maven / Gradle / Ivy

package com.martiansoftware.nailgun.builtins;

import com.martiansoftware.nailgun.NGConstants;
import com.martiansoftware.nailgun.NGContext;

/**
 * Displays the version of the NailGun server and exits.
 *  
 * @author Marty Lamb
 */
public class NGVersion {

	public static void nailMain(NGContext context) {
		context.out.println("NailGun server version " + NGConstants.VERSION);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy