File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
main/scala/com/ncredinburgh/sonar/scalastyle
test/scala/com/ncredinburgh/sonar/scalastyle Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
<groupId >com.ncredinburgh</groupId >
13
13
<artifactId >sonar-scalastyle</artifactId >
14
14
<packaging >sonar-plugin</packaging >
15
- <version >0.0.3-SNAPSHOT </version >
15
+ <version >0.0.4 </version >
16
16
17
17
<name >Sonar Scalastyle Plugin</name >
18
18
<description >Enables analysis of Scala projects with Scalastyle.</description >
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import com.ncredinburgh.sonar.scalastyle.core.Scala
29
29
*/
30
30
class ScalastylePlugin extends SonarPlugin {
31
31
override def getExtensions : java.util.List [Class [_ <: Extension ]] = ListBuffer (
32
- classOf [Scala ],
32
+ // classOf[Scala],
33
33
classOf [ScalastyleRepository ],
34
34
classOf [ScalastyleQualityProfile ],
35
35
classOf [ScalastyleSensor ]
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ class ScalastylePluginSpec extends FlatSpec with Matchers {
39
39
assert(testee.getExtensions.contains(classOf [ScalastyleRepository ]))
40
40
}
41
41
42
- it should " provide a scala language" in {
43
- assert(testee.getExtensions.contains(classOf [Scala ]))
44
- }
42
+ // it should "provide a scala language" in {
43
+ // assert(testee.getExtensions.contains(classOf[Scala]))
44
+ // }
45
45
46
46
it should " provide a scalastyle quality profile" in {
47
47
assert(testee.getExtensions.contains(classOf [ScalastyleQualityProfile ]))
You can’t perform that action at this time.
0 commit comments