sonar-l10n-en-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.sonar.plugins</groupId> <artifactId>sonar-l10n-en-plugin</artifactId> <version>4.5.7</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ SonarQube, open source software quality management tool. ~ Copyright (C) 2008-2014 SonarSource ~ mailto:contact AT sonarsource DOT com ~ ~ SonarQube 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. ~ ~ SonarQube 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. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar</artifactId> <version>4.5.7</version> <relativePath>../..</relativePath> </parent> <groupId>org.codehaus.sonar.plugins</groupId> <artifactId>sonar-l10n-en-plugin</artifactId> <packaging>sonar-plugin</packaging> <name>SonarQube :: Plugins :: English Pack</name> <dependencies> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <configuration> <pluginName>English Pack</pluginName> <pluginClass>org.sonar.plugins.l10n.EnglishPackPlugin</pluginClass> <pluginDescription><![CDATA[Language pack for English]]></pluginDescription> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>${skipServerTests}</skipTests> </configuration> </plugin> </plugins> </build> </project>