com.marvelution.bamboo.plugins.sonar.tasks.utils.PluginHelper Maven / Gradle / Ivy
/*
* Licensed to Marvelution under one or more contributor license
* agreements. See the NOTICE file distributed with this work
* for additional information regarding copyright ownership.
* Marvelution licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.marvelution.bamboo.plugins.sonar.tasks.utils;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
* Simple helper class to get plugin properties form the plugin.properties file
*
* @author Mark Rekveld
*/
public final class PluginHelper {
private static final PluginHelper INSTANCE = new PluginHelper();
private final Properties PROPERTIES = new Properties();
/**
* Private constructor
*/
private PluginHelper() {
final InputStream input = getClass().getResourceAsStream("plugin.properties");
try {
PROPERTIES.load(input);
} catch (IOException e) {
throw new RuntimeException("Failed to load plugin properties", e);
}
}
/**
* Getter for the plugin groupId property
*
* @return the plugin groupId property value
*/
public static String getPluginGroupId() {
return INSTANCE.getProperty("plugin.groupId");
}
/**
* Getter for the plugin arifactId property
*
* @return the plugin arifactId property value
*/
public static String getPluginArifactId() {
return INSTANCE.getProperty("plugin.artifactId");
}
/**
* Getter for the plugin version property
*
* @return the plugin version property value
*/
public static String getPluginVersion() {
return INSTANCE.getProperty("plugin.version");
}
/**
* Getter for the plugin key property
*
* @return the plugin key property value
*/
public static String getPluginKey() {
return INSTANCE.getProperty("plugin.key");
}
/**
* Getter for a property
*
* @param key the property key
* @return the property value
*/
private String getProperty(String key) {
return getProperty(key, "");
}
/**
* Getter for a property
*
* @param key the property key
* @param defaultValue the default value, use if the property is not set
* @return the property value, or the given default value if the property is not set
*/
private String getProperty(String key, String defaultValue) {
return PROPERTIES.getProperty(key, defaultValue);
}
}