I am trying to get netty-codec-hhtp in my maven project. I have a completely standard Sonatype Nexus configured for Maven Central proxy requests.
<dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http</artifactId> <version>4.0.9.Final</version> </dependency>
This fails when created using maven. If I search for it manually in Nexus, I find it, but if I go to load the jar, it will tell me:
404 - Not Found Automatic routing filter rejected remote request for path /io/netty/netty-codec-http/4.0.9.Final/netty-codec-http-4.0.9.Final.jar from M2Repository(id=central)
What does this mean, why am I getting it and, more importantly, how to fix it? I am using Nexus 2.5.0-04 with Maven 3.0.4
Downloading other artifacts seems to work very well.
maven nexus netty
Mikkel løkke
source share