Skip to content
Snippets Groups Projects
Commit 44dae9f6 authored by Winnie's avatar Winnie Committed by Christopher Schankula
Browse files

update tomcat script

parent c24e34cf
No related branches found
No related tags found
Loading
import subprocess
pathToTomcat = "C:\\Users\\liang\\Documents\\Git\\Trawl\\tomcat" # CUSTOM
pathClasspath = "C:\\Users\\liang\\Documents\\Git\\Trawl\\tomcat\\lib\\servlet-api.jar;C:\\Users\\liang\\Documents\\Git\\Trawl\\tomcat\\webapps\\Trawl\\bin" # CUSTOM
pathToTomcat = "C:\\Users\\liang\\Documents\\Git\\Trawl\\tomcat" # REPLACE ME - CUSTOM
pathToSrc = "\\webapps\\Trawl\\bin\\com\\example\\"
pathToFin = "\\webapps\\Trawl\\WEB-INF\\classes\\com\\example\\"
pathClasspath = pathToTomcat + "\\lib\\servlet-api.jar;" + pathToTomcat + "\\webapps\\Trawl\\bin"
compileCMD1 = "javac -cp " + pathClasspath + " " + pathToTomcat + pathToSrc + "web\\Director.java"
compileCMD2 = "javac -cp " + pathClasspath + " " + pathToTomcat + pathToSrc + "model\\TrawlExpert.java"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment