File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed
java/org/sonar/plugins/objectivec
resources/org/sonar/plugins/objectivec Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
- # SonarQube Plugin for Objective-C
1
+ # SonarQube Objective-C (Community) Plugin
2
2
3
3
This repository hosts the Objective-C plugin for
4
4
[ SonarQube] ( http://www.sonarqube.org/ ) . This plugin aims to analyze and track
Original file line number Diff line number Diff line change 13
13
<version >0.5.0-SNAPSHOT</version >
14
14
<packaging >sonar-plugin</packaging >
15
15
16
- <name >SonarQube Objective-C Plugin</name >
16
+ <name >SonarQube Objective-C (Community) Plugin</name >
17
17
<description >Enable analysis and reporting on Objective-C projects.</description >
18
18
<url >https://github.com/octo-technology/sonar-objective-c</url >
19
19
97
97
98
98
<!-- Configuration for sonar-packaging-maven-plugin -->
99
99
<sonar .pluginClass>org.sonar.plugins.objectivec.ObjectiveCPlugin</sonar .pluginClass>
100
- <sonar .pluginName>Objective-C</sonar .pluginName>
100
+ <sonar .pluginName>Objective-C (Community) </sonar .pluginName>
101
101
102
102
</properties >
103
103
Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ public class ObjectiveC extends AbstractLanguage {
32
32
/**
33
33
* Objective-C key
34
34
*/
35
- public static final String KEY = "objc " ;
35
+ public static final String KEY = "objectivec " ;
36
36
37
37
/**
38
38
* Objective-C name
39
39
*/
40
- public static final String NAME = "Objective-C" ;
40
+ public static final String NAME = "Objective-C (Community) " ;
41
41
42
42
/**
43
43
* Key of the file suffix parameter
Original file line number Diff line number Diff line change 1
1
<profile >
2
2
<name >Clang</name >
3
- <language >objc </language >
3
+ <language >objectivec </language >
4
4
<rules >
5
5
<rule >
6
6
<repositoryKey >clang</repositoryKey >
43
43
<key >other</key >
44
44
</rule >
45
45
</rules >
46
- </profile >
46
+ </profile >
Original file line number Diff line number Diff line change 1
1
<profile >
2
2
<name >OCLint</name >
3
- <language >objc </language >
3
+ <language >objectivec </language >
4
4
<rules >
5
5
<rule >
6
6
<repositoryKey >OCLint</repositoryKey >
255
255
<key >use early exits and continue</key >
256
256
</rule >
257
257
</rules >
258
- </profile >
258
+ </profile >
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ def writeProfileOCLint() {
102
102
MarkupBuilder xml = new MarkupBuilder (new IndentPrinter (writer, " " ))
103
103
xml. profile() {
104
104
name " OCLint"
105
- language " objc "
105
+ language " objectivec "
106
106
rules {
107
107
rulesXml. rule. each { rl ->
108
108
rule {
You can’t perform that action at this time.
0 commit comments