maven 사용 테스트.
1. git bash 설치
http://git-scm.com/download/win
2. maven 설치
http://maven.apache.org/
3. 환경변수 등록
path에 등록 - [maven home]\bin;
4. 소스 다운로드
git bash 실행
git clone https://github.com/spring-projects/spring-social-sample.git
5. maven을 이용하여 jar 다운로드
cd [git_repo]/spring-social-samples/attic/spring-social-quickstart-3.0.x
mvn package
pc home하위에 .m2폴더밑으로 다운로드 된다.
pom.xml의 내용 대로 Maven이 동작 된다.
6. pom.xml의 tomcat 플러그인 실행하여 동작 확인.
cd [git_repo]/spring-social-samples/attic/spring-social-quickstart-3.0.x
mvn tomcat:run
http://localhost:8080/spring-social-quickstart-30x
7. eclipse에서 사용 가능하도록 생성
mvn eclipse:eclipse
8. eclipse에서 import하여 확인.
eclipse에 maven plugin이 설치 되어 있어야 한다.
'Spring' 카테고리의 다른 글
[ SpringBoot ] 2개 이상의 Datasource 운용하기 (0) | 2018.10.15 |
---|---|
[Spring] Tiles 적용하기 (0) | 2014.09.04 |
[ Spring ] Web Service - Restful 2 (0) | 2013.11.26 |
[ Spring ] Web Service - Restful 1 (0) | 2013.11.26 |
[Spring] Spring에서 import 시 "classpath:"와 "classpath*:" 의 차이점 (0) | 2012.08.29 |