Use global netty version variable.

This commit is contained in:
md_5 2013-03-14 20:35:58 +11:00
parent 0f30024040
commit ac426f0c3f
3 changed files with 10 additions and 4 deletions

View File

@ -57,8 +57,9 @@
</ciManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build.number>unknown</build.number>
<netty.version>4.0.0.Beta3-SNAPSHOT</netty.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>

View File

@ -22,7 +22,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
<version>4.0.0.Beta3-SNAPSHOT</version>
<version>${netty.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -21,8 +21,13 @@
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.0.0.Beta3-SNAPSHOT</version>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>net.md-5</groupId>