You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Version.java 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Sonar Runner - API
  3. * Copyright (C) 2011 SonarSource
  4. * dev@sonar.codehaus.org
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
  19. */
  20. package org.sonar.runner;
  21. import org.apache.commons.io.IOUtils;
  22. import java.io.IOException;
  23. import java.io.InputStream;
  24. import java.util.Properties;
  25. public enum Version {
  26. INSTANCE;
  27. private static final String PROPERTIES_PATH = "/org/sonar/runner/version.txt";
  28. private String version;
  29. public static String getVersion() {
  30. return INSTANCE.version;
  31. }
  32. private Version() {
  33. InputStream input = getClass().getResourceAsStream(PROPERTIES_PATH);
  34. try {
  35. Properties properties = new Properties();
  36. properties.load(input);
  37. this.version = properties.getProperty("version");
  38. } catch (IOException e) {
  39. // Can not load the version
  40. this.version = "";
  41. } finally {
  42. IOUtils.closeQuietly(input);
  43. }
  44. }
  45. }