All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.navimatrix.commons.concurrent.Build Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
/*
 * Blazebot Computing
 * Licensed Materials - Property of Ed Sweeney
 * Copyright Ed Sweeney 2004, 2005, 2006, 2007. All rights reserved.
 *
 * @author Ed Sweeney 
 */
package org.navimatrix.commons.concurrent;

/**
 * keep track of the version and build numbers
 */
public class Build {

    /** Current Version of VersionTracker.*/
    private static final String version = "0.24.0";

    /** Current Version of VersionTracker.*/
    private static final String build = "2006122801";


    public static void main (String[] args) {
        System.out.println("Version: " + version);
        System.out.println("Build: " + build);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy