diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2018-07-05 17:26:54 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-07-09 10:39:33 +0200 |
commit | deafa95ac4fe407e22e5ad56ecdbbb2e0105e24a (patch) | |
tree | 3851df2f9e31da05ceaa7ff63775fb9cfedd177e /server/sonar-plugin-bridge/src/main/java/org/sonar | |
parent | e43471671222ac80e9016e71646389b13d4677ba (diff) | |
download | sonarqube-deafa95ac4fe407e22e5ad56ecdbbb2e0105e24a.tar.gz sonarqube-deafa95ac4fe407e22e5ad56ecdbbb2e0105e24a.zip |
drop dependency of sonar-ce on sonar-server
sonar-plugin-bridge dropped and its content (only ReportAnalysisComponentProvider interface) move to sonar-ce-task-projectanalysis
Diffstat (limited to 'server/sonar-plugin-bridge/src/main/java/org/sonar')
3 files changed, 0 insertions, 79 deletions
diff --git a/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/ce/ReportAnalysisComponentProvider.java b/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/ce/ReportAnalysisComponentProvider.java deleted file mode 100644 index 961067be9dc..00000000000 --- a/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/ce/ReportAnalysisComponentProvider.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2018 SonarSource SA - * mailto:info AT sonarsource DOT com - * - * This program 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. - * - * This program 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.plugin.ce; - -import java.util.List; -import org.sonar.api.ce.ComputeEngineSide; - -@ComputeEngineSide -public interface ReportAnalysisComponentProvider { - - /** - * Return the list of components to add to the state-full container of a Compute Engine report analysis task - */ - List<Object> getComponents(); - -} diff --git a/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/ce/package-info.java b/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/ce/package-info.java deleted file mode 100644 index 6449a8c3f53..00000000000 --- a/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/ce/package-info.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2018 SonarSource SA - * mailto:info AT sonarsource DOT com - * - * This program 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. - * - * This program 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. - */ -@ParametersAreNonnullByDefault -package org.sonar.plugin.ce; - -import javax.annotation.ParametersAreNonnullByDefault; diff --git a/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/package-info.java b/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/package-info.java deleted file mode 100644 index c366c889de1..00000000000 --- a/server/sonar-plugin-bridge/src/main/java/org/sonar/plugin/package-info.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2018 SonarSource SA - * mailto:info AT sonarsource DOT com - * - * This program 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. - * - * This program 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. - */ -@ParametersAreNonnullByDefault -package org.sonar.plugin; - -import javax.annotation.ParametersAreNonnullByDefault; |