이클립스 설치하고 maven 설치하고
가장 큰 문제가 저는 메이븐을 사용이 이번이 처음이거든요 ..
필요한 라이브러리는 직접 구해서 집어넣었는데, 메이븐 같은 방법이
netty가 필요해서 집어넣었는데 저런식으로 오류가 나네요..
거의 2~3? , 허비한것 같은데. 답은 공식 홈페이지에 나오네요 ..
그냥 메이븐에서 추가하면 pom.xml에서 아래부분이 다릅니다. 저렇게 고치면 오류가 안나네요
Downloading from Maven 2 repository
First off, add the following repository section to your pom.xml or ~/.m2/settings.xml:
1 2 3 4 5 6 7 8 9 10 11 | < repositories > ... < repository > < id >repository.jboss.org</ id > < snapshots > < enabled >false</ enabled > </ snapshots > </ repository > ... </ repositories > |
And then add the following dependency section to your pom.xml:
1 2 3 4 5 6 7 8 9 10 | < dependencies > ... < dependency > < groupId >org.jboss.netty</ groupId > < artifactId >netty</ artifactId > < version >X.Y.Z.Q</ version > < scope >compile</ scope > </ dependency > ... </ dependencies >
|
'Study > Java' 카테고리의 다른 글
Unknown error: Unable to build: the file dx.jar was not loaded from the SDK folder! (0) | 2012.12.24 |
---|---|
sqlite insert 속도 증가시키기(java) (0) | 2012.10.03 |
자바 쓰레드간 통신 주고 받는 방법 (0) | 2012.07.17 |
java 디자인 패턴 (0) | 2012.07.06 |
java.net.ConnectException: Connection timed out: connect (0) | 2012.04.03 |
BufferedReader vs Scanner (0) | 2011.09.12 |