Browse Source

use the final release instead of the snapshot

Luis Filipe dos Santos Neves 10 years ago
parent
commit
2f9b2ea9f6
1 changed files with 2 additions and 16 deletions
  1. 2 16
      frameworks/Java/netty/pom.xml

+ 2 - 16
frameworks/Java/netty/pom.xml

@@ -9,30 +9,16 @@
 
 	<packaging>jar</packaging>
 	
-	<repositories>
-		<repository>
-			<id>netty.snapshots</id>
-			<name>Netty Snapshot Repository</name>
-			<url>http://clinker.netty.io/nexus/content/repositories/snapshots/</url>
-			<releases>
-				<enabled>false</enabled>
-			</releases>
-			<snapshots>
-				<enabled>true</enabled>
-			</snapshots>
-		</repository>
-	</repositories>
-
 	<dependencies>
 		<dependency>
 			<groupId>io.netty</groupId>
 			<artifactId>netty-codec-http</artifactId>
-			<version>4.0.26.Final-SNAPSHOT</version>
+			<version>4.0.26.Final</version>
 		</dependency>
 		<dependency>
 			<groupId>io.netty</groupId>
 			<artifactId>netty-transport-native-epoll</artifactId>
-			<version>4.0.26.Final-SNAPSHOT</version>
+			<version>4.0.26.Final</version>
 			<classifier>linux-x86_64</classifier>
 		</dependency>
 		<dependency>