aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorDuarte Meneses <duarte.meneses@sonarsource.com>2015-08-26 09:18:31 +0200
committerDuarte Meneses <duarte.meneses@sonarsource.com>2015-08-28 15:54:30 +0200
commite6950401a73e7ed1eb5401805528475c6b59f71a (patch)
tree42d44f9c59147cd11e1388794b23a9024a82a23d /sonar-plugin-api
parent8523b364f6ffe299f1c5200aa4872dbb604f6a4d (diff)
downloadsonarqube-e6950401a73e7ed1eb5401805528475c6b59f71a.tar.gz
sonarqube-e6950401a73e7ed1eb5401805528475c6b59f71a.zip
Removal of deprecated ProjectBootstrapper
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBootstrapper.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBootstrapper.java b/sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBootstrapper.java
deleted file mode 100644
index eb4f3e8370b..00000000000
--- a/sonar-plugin-api/src/main/java/org/sonar/api/batch/bootstrap/ProjectBootstrapper.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * SonarQube is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * SonarQube is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-package org.sonar.api.batch.bootstrap;
-
-import org.sonar.api.batch.BatchSide;
-import org.sonar.api.ExtensionPoint;
-
-/**
- * This extension point initializes the project structure. It is extended by batch bootstrappers
- * like sonar-runner or Maven plugin. It is not supposed to be used by standard plugins (.NET, ...).
- * Some use-cases :
- * <ul>
- * <li>Maven Plugins defines project structure from pom.xml</li>
- * <li>Sonar Runner defines project from sonar-runner.properties</li>
- * </ul>
- * Only one instance is allowed per environment.
- *
- * @since 3.7
- * @deprecated since 4.3 All bootstrappers should use SQ Runner API and provide a set of properties
- */
-@Deprecated
-@BatchSide
-@ExtensionPoint
-public interface ProjectBootstrapper {
-
- /**
- * Implement this method to create project reactor
- */
- ProjectReactor bootstrap();
-
-}