diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2018-11-13 16:27:39 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-01-16 09:42:59 +0100 |
commit | 0392f0dd841ffafde74d170918858fff43b22070 (patch) | |
tree | 5e1cd3e0678295a0906f26075a471f7191511b88 /sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/ModuleConfiguration.java | |
parent | 4a659a05cf4ff177629e9cb78aa6a0721810ff61 (diff) | |
download | sonarqube-0392f0dd841ffafde74d170918858fff43b22070.tar.gz sonarqube-0392f0dd841ffafde74d170918858fff43b22070.zip |
Clean some scanner component names
Diffstat (limited to 'sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/ModuleConfiguration.java')
-rw-r--r-- | sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/ModuleConfiguration.java | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/ModuleConfiguration.java b/sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/ModuleConfiguration.java new file mode 100644 index 00000000000..2dbcc577806 --- /dev/null +++ b/sonar-scanner-engine/src/main/java/org/sonar/scanner/scan/ModuleConfiguration.java @@ -0,0 +1,34 @@ +/* + * SonarQube + * Copyright (C) 2009-2019 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.scanner.scan; + +import java.util.Map; +import org.sonar.api.config.Encryption; +import org.sonar.api.config.PropertyDefinitions; +import org.sonar.scanner.bootstrap.GlobalAnalysisMode; +import org.sonar.scanner.config.DefaultConfiguration; + +public class ModuleConfiguration extends DefaultConfiguration { + + public ModuleConfiguration(PropertyDefinitions propertyDefinitions, Encryption encryption, GlobalAnalysisMode mode, Map<String, String> props) { + super(propertyDefinitions, encryption, mode, props); + } + +} |