메이븐 웹 프로젝트 tomcat 배포 이클립스 톰캣 서버 위치 변경 톰캣 서버 사용자 추가 C:\Program Files\Apache Software Foundation\Tomcat 8.0\conf\tomcat-users.xml <?xml version='1.0' encoding='cp949'?> <tomcat-users xmlns="http://tomcat.apache.org/xml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd" version="1.0"> <role rolename="manager-script"/> <user username="admin" password="admin" roles="manager-script"/> </tomcat-users> role 과 사용자를 추가 하였다. maven-war-plugin , tomcat-maven-plugin 추가 및 설정 추가 한 부분은 build node 아래 plugins 노드에 있다. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd...