mvn archetype:generate -DgroupId={project-packaging} -DartifactId={project-name} -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
1) 메이븐에서 프로젝트 위 command로 프로젝트 생성.
2) pom.xml파일에서 필요 디펜던시 추가.
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency>
3) mvn install 로 추가된 디펜던시 로컬리파지토리로 설치.
3) mvn eclipse:eclipse 명령으로 이클립스 파일 생성하고 프로젝트 import 함.
'프로그래밍' 카테고리의 다른 글
mysql table 용량 보는 쿼리 (0) | 2015.05.07 |
---|---|
[maven] jar 를 Local Repository 에 추가하기 (0) | 2015.05.06 |
저장 검색의 복잡도 (0) | 2015.04.08 |
git reset commit 살리기 (0) | 2015.03.24 |
Linux Load average에 대해서 (0) | 2015.03.10 |