001/* 002 Copyright 2006 Paul Zepernick 003 004 Licensed under the Apache License, Version 2.0 (the "License"); 005 you may not use this file except in compliance with the License. 006 You may obtain a copy of the License at 007 008 http://www.apache.org/licenses/LICENSE-2.0 009 010 Unless required by applicable law or agreed to in writing, software distributed 011 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 012 CONDITIONS OF ANY KIND, either express or implied. See the License for 013 the specific language governing permissions and limitations under the License. 014 */ 015package net.sf.flatpack; 016 017/** 018 * 019 * Static class which stores the version of this FlatPack 020 */ 021public final class Version { 022 public static final String VERSION = "3.3.0"; 023 024 private Version() { 025 } 026}