org.sonar.plugins.web.WebPlugin Maven / Gradle / Ivy
/*
* Sonar Web Plugin
* Copyright (C) 2010 Matthijs Galesloot
* [email protected]
*
* Licensed 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 org.sonar.plugins.web;
import org.sonar.api.Extension;
import org.sonar.api.Properties;
import org.sonar.api.Property;
import org.sonar.api.SonarPlugin;
import org.sonar.plugins.web.api.WebConstants;
import org.sonar.plugins.web.core.Web;
import org.sonar.plugins.web.core.WebCodeColorizerFormat;
import org.sonar.plugins.web.core.WebProjectBuilder;
import org.sonar.plugins.web.core.WebSensor;
import org.sonar.plugins.web.core.WebSourceImporter;
import org.sonar.plugins.web.duplications.WebCpdMapping;
import org.sonar.plugins.web.rules.SonarWayProfile;
import org.sonar.plugins.web.rules.WebRulesRepository;
import java.util.ArrayList;
import java.util.List;
/**
* Web Plugin publishes extensions to sonar engine.
*
* @author Matthijs Galesloot
* @since 1.0
*/
@Properties({
@Property(key = WebConstants.CPD_MINIMUM_TOKENS_PROP_KEY, defaultValue = "70",
name = "Minimum tokens",
description = "The number of duplicate tokens above which a HTML block is considered as a duplicated.",
global = true,
project = true),
@Property(key = WebConstants.SOURCE_DIRECTORY_PROP_KEY,
name = "Source directory",
description = "Source directory that will be scanned.",
defaultValue = WebConstants.SOURCE_DIRECTORY_DEF_VALUE,
// do not display this property in the UI as it is deprecated since 1.2
global = false,
project = false)})
public final class WebPlugin extends SonarPlugin {
public List> getExtensions() {
List> list = new ArrayList>();
// extension used to allow backward compatibility for the "sonar.web.sourceDirectory" property
list.add(WebProjectBuilder.class);
// web language
list.add(Web.class);
// web files importer
list.add(WebSourceImporter.class);
// web rules repository
list.add(WebRulesRepository.class);
// profiles
list.add(SonarWayProfile.class);
// web sensor
list.add(WebSensor.class);
// Code Colorizer
list.add(WebCodeColorizerFormat.class);
// Copy/Paste detection mechanism
list.add(WebCpdMapping.class);
return list;
}
}