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

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

Go to download

Nailgun is a client, protocol and server for running Java programs from the command line without incurring the JVM startup overhead. Programs run in the server (which is implemented in Java), and are triggered by the client (C and Python clients available), which handles all I/O. This project contains the SERVER ONLY.

There is a newer version: 1.0.1
Show newest version
/*
  Copyright 2004-2012, Martian Software, Inc.
  Copyright 2017-Present Facebook, Inc.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

package com.facebook.nailgun.builtins;

import com.facebook.nailgun.NGConstants;
import com.facebook.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