본문 바로가기
반응형

maven7

Hudson 에서 Maven 프로젝트 배포하기 1. 배포 관련 플러그인 설치 Hudson 관리 > Manage Plugins 로 들어가서 두개의 플러그인을 활성화 해준다. - Hudson Deploy Plugin - Copy Arifact Plugin 2. 설정하기 (This build is parameterize) Job 의 Config 설정부분에서 This build is parameterized 부분을 활성화 한다. (Copy Arifact Plugin) 부분 Name : Copy NameDefault Selector : 복사 상태permalink : 최종 성공 빌드 (Last successful build) 3. 설정하기 (This build is parameterize) Deploy war/ear to a container 기능을 활성화한다.. 2013. 2. 7.
[WARN] Using platform encoding (MS949 actually) to copy filtered resources, i.e. build is platform dependent! Maven 으로 컴파일 도중 다음의 오류 발생 [WARN] Using platform encoding (MS949 actually) to copy filtered resources, i.e. build is platform dependent! 아마 인코딩이 MS949인데 소스가 UTF-8이라서 그런가보다. pom.xml 파일에 다음의 내용을 기술 3.0.5.RELEASE UTF-8 UTF-8 2012. 5. 30.
Maven 으로 Tomcat 7.0 배포할때 오류[Cannot invoke Tomcat manager: Server returned HTTP response code: 403] Maven 으로 열심히 설정을 따라하고 있는데. Tomcat 서버에 Deploy가 되지 않아서 구글링을 하였다. 원인은 모르겠지만 다음의 설정으로 정상 작동 하였으며, 이전 6.0 버전으로는 테스트해보지 않아서 잘 모르겠다. - 이전에는 pom.xml에 서버 정보 및 배포 url 이 http://127.0.0.1:8080/manager까지 였던 부분이 http://127.0.0.1:8080/manager/html 로 변경 - pom.xml 에 있던 서버 id, password 부분이 m2\setting.xml 로 이동 pom.xml 4.0.0 com.nakanara.test test3 war 0.0.1-SNAPSHOT test3 Maven Webapp http://maven.apache.org junit.. 2012. 3. 13.
반응형