blob: 50a3261b4ad1ebdff187ecdcfe2a163803d725d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2011 Sonatype Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Sonatype Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.tycho.core.utils;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import org.codehaus.plexus.util.IOUtil;
public class TychoVersion {
private static final String TYCHO_VERSION = readVersion();
public static String getTychoVersion() {
return TYCHO_VERSION;
}
private static String readVersion() {
InputStream stream = TychoVersion.class.getResourceAsStream("version.properties");
try {
Properties p = new Properties();
p.load(stream);
return p.getProperty("version");
} catch (IOException e) {
throw new IllegalStateException(e);
} finally {
IOUtil.close(stream);
}
}
}