blob: 01e9c9e7773021a3f700c98dc4ca66eb69efb9bc [file] [log] [blame]
/******************************************************************************
** This data and information is proprietary to, and a valuable trade secret
** of, Basis Technology Corp. It is given in confidence by Basis Technology
** and may only be used as permitted under the license agreement under which
** it has been distributed, and in no other way.
**
** Copyright (c) 2014 Basis Technology Corporation All rights reserved.
**
** The technical data and information provided herein are provided with
** `limited rights', and the computer software provided herein is provided
** with `restricted rights' as those terms are defined in DAR and ASPR
** 7-104.9(a).
******************************************************************************/
package com.fasterxml.jackson.databind.module.customenumkey;
import com.fasterxml.jackson.core.Version;
/**
* Common class to set up Jackson version from property.
*/
final class ModuleVersion {
static final Version VERSION = new Version(0, 0, 0, "", "", "");
private ModuleVersion() {
//
}
}