Removed GroovyDirectoryServer (became it's own project).

This commit is contained in:
Jonathan Bernard 2015-07-08 14:02:07 -05:00
parent f2bc4b34d0
commit 5b25794f5d
2 changed files with 1 additions and 46 deletions

View File

@ -2,7 +2,7 @@ apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdbernard"
version = "3.10"
version = "4.0"
repositories {
mavenCentral() }
@ -12,9 +12,6 @@ dependencies {
compile 'org.slf4j:slf4j-api:1.7.10'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'javax.servlet:servlet-api:2.4'
compile 'javax.servlet.jsp:jsp-api:2.1'
compile 'org.eclipse.jetty.aggregate:jetty-all:7.6.15.v20140411'
testCompile 'junit:junit:4.12'
}

View File

@ -1,42 +0,0 @@
package com.jdbernard.net
import org.eclipse.jetty.server.Server
import org.eclipse.jetty.servlet.*
import groovy.servlet.*
public class GroovyDirectoryServer {
public static void runJetty(int port) {
def server = new Server(port)
def handler = new ServletContextHandler(ServletContextHandler.SESSIONS)
handler.contextPath = '/'
handler.resourceBase = '.'
// Groovy Scripts
handler.addServlet(GroovyServlet, '*.groovy')
// Files
def filesHolder = handler.addServlet(DefaultServlet, '/')
filesHolder.setInitParameter('resourceBase', '.')
server.handler = handler
server.start()
}
public static void main(String[] args) {
def port = 9002
if (args.length < 1) {
port = 9002
println "Defaulting to port 9002" }
else try { port = args[0] as int }
catch(Exception e) {
println "Usage: GroovyDirectoryServer.grooy <port>"
System.exit(1) }
println "Starting Jetty on port $port, press Ctrl-C to stop."
runJetty(port)
}
}