본문 바로가기

Study/Java

missing artifact org.jboss.netty



이클립스 설치하고 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>