1 // DO NOT MODIFY - WILL BE OVERWRITTEN DURING THE BUILD PROCESS 2 package org.jboss.netty.util; 3 /** 4 * Provides the version information of Netty. 5 * @apiviz.landmark 6 */ 7 @SuppressWarnings("all") 8 public final class Version { 9 /** The version identifier. */ 10 public static final String ID = "3.10.6.Final-5f56a03"; 11 /** Prints out the version identifier to stdout. */ 12 public static void main(String[] args) { System.out.println(ID); } 13 private Version() { } 14 }