java - Installing unknown web application on tomcat server -


i've downloaded web application repository , want try it. have tomcat installed (no eclipse, idea etc). don't know how start. know directory layout of code i've checked out. simple dropping somewhere tomcat directory structure?

. ├── pom.xml ├── readme.html ├── readme.md └── src     ├── main     │   ├── java     │   │   ├── meta-inf     │   │   ├── ncbi     │   │   │   └── blast     │   │   └── uk     │   │       └── ac     │   ├── resources     │   │   ├── bioactivitiessql.sql     │   │   ├── chemblwsclient.properties     │   │   ├── chemblws.properties     │   │   ├── log4j.properties     │   │   ├── schemafolder     │   │   │   ├── ncbi_blastoutput.dtd     │   │   │   ├── ncbi_blastoutput.mod.dtd     │   │   │   └── ncbi_entity.mod.dtd     │   │   └── uk     │   │       └── ac     │   └── webapp     │       └── web-inf     │           ├── blast-context.xml     │           ├── chemblws-client-context.xml     │           ├── chemblws-servlet.xml     │           ├── jetty-env.xml     │           ├── oldor.xml     │           ├── override-web.xml     │           ├── production-override-web.xml     │           └── web.xml     └── test         ├── java         │   └── uk         │       └── ac         └── resources             └── log4j.properties 

this maven-mananged project. do:

mvn package mvn tomcat:run 

maven start embedded tomcat webapp.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -