diff options
author | Lukasz Jarocki <lukasz.jarocki@sonarsource.com> | 2022-10-13 16:23:01 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-10-14 20:03:03 +0000 |
commit | cf8ab09b8d5fe9e72be77ef610d911b40f177214 (patch) | |
tree | 63b1383d356d44f13aab3f2fce69d3a51e38be66 /sonar-core | |
parent | fdb78927f43c324750c185f105ade4d151fa9193 (diff) | |
download | sonarqube-cf8ab09b8d5fe9e72be77ef610d911b40f177214.tar.gz sonarqube-cf8ab09b8d5fe9e72be77ef610d911b40f177214.zip |
SONAR-16633 splitting plugins into two categories in the scanner context
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/plugin/PluginType.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/plugin/PluginType.java b/sonar-core/src/main/java/org/sonar/core/plugin/PluginType.java new file mode 100644 index 00000000000..b93042b575e --- /dev/null +++ b/sonar-core/src/main/java/org/sonar/core/plugin/PluginType.java @@ -0,0 +1,24 @@ +/* + * SonarQube + * Copyright (C) 2009-2022 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.core.plugin; + +public enum PluginType { + EXTERNAL, BUNDLED +} |