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

me.bazhenov.groovysh.Main Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package me.bazhenov.groovysh;

import java.io.IOException;

import static java.lang.Thread.currentThread;

public class Main {

	public static void main(String[] args) throws IOException, InterruptedException {
		GroovyShellService service = new GroovyShellService();
		service.setPort(6789);
		service.start();

		while (!currentThread().isInterrupted())
			Thread.sleep(100);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy