org.jboss.netty.util.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-retries-plugin Show documentation
Show all versions of payment-retries-plugin Show documentation
Kill Bill Payment Retries plugin
The newest version!
// DO NOT MODIFY - WILL BE OVERWRITTEN DURING THE BUILD PROCESS
package org.jboss.netty.util;
/**
* Provides the version information of Netty.
* @apiviz.landmark
*/
@SuppressWarnings("all")
public final class Version {
/** The version identifier. */
public static final String ID = "3.10.6.Final-5f56a03";
/** Prints out the version identifier to stdout. */
public static void main(String[] args) { System.out.println(ID); }
private Version() { }
}