diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2016-01-19 16:07:28 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2016-01-20 20:12:44 +0100 |
commit | a7a4837bcb2487b0b83bf3489099e3efe0f64e49 (patch) | |
tree | 0ee6b9866ff1858b946004fd088304dc291a1ea9 /sonar-plugin-api | |
parent | acdb68379316021febe9c6c435bbe4450d137ed0 (diff) | |
download | sonarqube-a7a4837bcb2487b0b83bf3489099e3efe0f64e49.tar.gz sonarqube-a7a4837bcb2487b0b83bf3489099e3efe0f64e49.zip |
SONAR-7234 Remove @SupportedEnvironment
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/batch/SupportedEnvironment.java | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/batch/SupportedEnvironment.java b/sonar-plugin-api/src/main/java/org/sonar/api/batch/SupportedEnvironment.java deleted file mode 100644 index 4e435e57c23..00000000000 --- a/sonar-plugin-api/src/main/java/org/sonar/api/batch/SupportedEnvironment.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2016 SonarSource SA - * mailto:contact 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.api.batch; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * This annotation allows to specify in which environments {@link BatchSide} components would be active. - * For example: "maven", "ant". - * Usage of this annotation is discouraged and we strictly recommend you to not overuse it. - * Most preferable is to design components to work in all environments. - * - * @since 2.6 - */ -@Retention(RetentionPolicy.RUNTIME) -@Target({ElementType.TYPE}) -public @interface SupportedEnvironment { - - String[] value(); - -} |