Browse Source

Add pluginDescription for Surefire, Core, Design

tags/2.6
Godin 13 years ago
parent
commit
464ad2d23f

+ 1
- 0
plugins/sonar-core-plugin/pom.xml View File

@@ -79,6 +79,7 @@
<pluginKey>core</pluginKey>
<pluginName>Core</pluginName>
<pluginClass>org.sonar.plugins.core.CorePlugin</pluginClass>
<pluginDescription><![CDATA[Provides all common components required to cover all languages.]]></pluginDescription>
</configuration>
</plugin>
<plugin>

+ 1
- 0
plugins/sonar-design-plugin/pom.xml View File

@@ -57,6 +57,7 @@
<pluginKey>design</pluginKey>
<pluginName>Design</pluginName>
<pluginClass>org.sonar.plugins.design.DesignPlugin</pluginClass>
<pluginDescription><![CDATA[Analyze Java bytecode to compute O.O. metrics and extract dependencies between resources.]]></pluginDescription>
</configuration>
</plugin>


+ 3
- 3
plugins/sonar-squid-java-plugin/pom.xml View File

@@ -11,7 +11,7 @@
<artifactId>sonar-squid-java-plugin</artifactId>
<packaging>sonar-plugin</packaging>
<name>Sonar :: Plugins :: Squid Java</name>
<description>Squid analyzer for Java</description>
<description>Squid analyzer for Java.</description>

<dependencies>
<dependency>
@@ -112,7 +112,7 @@
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-testing-harness</artifactId>
<scope>test</scope>
</dependency>
</dependency>
</dependencies>

<build>
@@ -136,4 +136,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

+ 3
- 2
plugins/sonar-surefire-plugin/pom.xml View File

@@ -58,9 +58,10 @@
<pluginKey>surefire</pluginKey>
<pluginName>Surefire</pluginName>
<pluginClass>org.sonar.plugins.surefire.SurefirePlugin</pluginClass>
<pluginDescription><![CDATA[Get results of unit tests with <a href='http://maven.apache.org/plugins/maven-surefire-plugin/'>Surefire</a>.]]></pluginDescription>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
@@ -70,4 +71,4 @@

</plugins>
</build>
</project>
</project>

Loading…
Cancel
Save