sonar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jvnet.hudson.plugins</groupId> <artifactId>sonar</artifactId> <version>2.0.1</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jvnet.hudson.plugins</groupId> <artifactId>plugin</artifactId> <version>1.344</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>sonar</artifactId> <version>2.0.1</version> <packaging>hpi</packaging> <name>Jenkins Sonar Plugin</name> <url>http://docs.codehaus.org/display/SONAR/Hudson+and+Jenkins+Plugin</url> <inceptionYear>2007</inceptionYear> <licenses> <license> <name>GNU Lesser General Public License (LGPL), v.3</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>godin</id> <name>Evgeny Mandrikov</name> <email>mandrikov@gmail.com</email> <organization>SonarSource</organization> <organizationUrl>http://www.sonarsource.com/</organizationUrl> <timezone>+3</timezone> <roles> <role>Developer</role> </roles> </developer> <developer> <id>sbrandhof</id> <name>Simon Brandhof</name> <email>simon.brandhof@gmail.com</email> <timezone>+1</timezone> <organization>SonarSource</organization> <organizationUrl>http://www.sonarsource.com/</organizationUrl> <roles> <role>Developer</role> </roles> </developer> <developer> <id>dgageot</id> <name>David Gageot</name> <email>david@gageot.net</email> <timezone>+1</timezone> <organization>SonarSource</organization> <organizationUrl>http://www.sonarsource.com/</organizationUrl> <roles> <role>Developer</role> </roles> </developer> <developer> <id>henryju</id> <name>Julien Henry</name> <email>henryju@yahoo.fr</email> <timezone>+1</timezone> <organization>SonarSource</organization> <organizationUrl>http://www.sonarsource.com/</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> <contributors> <contributor> <name>Cedric Munger</name> <email>cedric.munger@gmail.com</email> </contributor> <contributor> <name>Carlo Jelmini</name> <email>cjelmini@gmail.com</email> </contributor> </contributors> <scm> <connection>scm:git:git://github.com/SonarSource/jenkins-sonar-plugin.git</connection> <developerConnection>scm:git:git@github.com:SonarSource/jenkins-sonar-plugin.git</developerConnection> <url>https://github.com/SonarSource/jenkins-sonar-plugin</url> </scm> <issueManagement> <system>JIRA</system> <url>http://jira.codehaus.org/browse/SONARPLUGINS/component/13726</url> </issueManagement> <ciManagement> <system>Bamboo</system> <url>http://ci.codehaus.org/browse/SONAR-HUDSON</url> </ciManagement> <!-- <distributionManagement> <repository> <id>java.net-m2-repository</id> <url>http://maven.hudson-labs.org:8081/content/repositories/releases/</url> </repository> <snapshotRepository> <id>${snapshotRepositoryId}</id> <url>${snapshotRepositoryUrl}</url> </snapshotRepository> </distributionManagement> --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <hudson.version>${project.parent.version}</hudson.version> </properties> <dependencyManagement> <dependencies> <!-- Godin: see SONARPLUGINS-1378 I didn't found a better way in order to not embed unnecessary dependencies, than managing their scope to provided. Also note that all they come from a dependency on maven-plugin. --> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.4</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.jvnet.hudson.main</groupId> <artifactId>hudson-core</artifactId> <version>${hudson.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jvnet.hudson.main</groupId> <artifactId>maven-plugin</artifactId> <version>${hudson.version}</version> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.jvnet.hudson.main</groupId> <artifactId>hudson-test-harness</artifactId> <version>${hudson.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jvnet.hudson.main</groupId> <artifactId>hudson-war</artifactId> <type>war</type> <version>${hudson.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5-rc1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>1.4</version> </dependency> </dependencies> <!-- IMPORTANT NOTE: Repository with id "m.g.o-public" comes from one of dependencies. Which is a cause of troubles at least for Maven 2.2.1, because of change in location of this repository. Moreover - in a better world definitely better to rely only on Maven central repository. That's why this repository was disabled here: --> <repositories> <repository> <id>m.g.o-public</id> <url>https://maven.glassfish.org/content/groups/public/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>m.g.o-public</id> <url>https://maven.glassfish.org/content/groups/public/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.jvnet.hudson.tools</groupId> <artifactId>maven-hpi-plugin</artifactId> <configuration> <!-- See http://jira.codehaus.org/browse/SONARPLUGINS-402 --> <compatibleSinceVersion>1.2</compatibleSinceVersion> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <configuration> <header>${basedir}/src/license-header.txt</header> <strictCheck>true</strictCheck> <includes> <include>src/main/java/**</include> <include>src/test/java/**</include> </includes> <mapping> <java>SLASHSTAR_STYLE</java> </mapping> </configuration> <executions> <execution> <id>check-license</id> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>hudson</id> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jenkins</id> <distributionManagement> <repository> <id>java.net-m2-repository</id> <url>http://maven.hudson-labs.org:8081/content/repositories/releases/</url> </repository> <snapshotRepository> <id>${snapshotRepositoryId}</id> <url>${snapshotRepositoryUrl}</url> </snapshotRepository> </distributionManagement> </profile> <profile> <id>m2e</id> <activation> <!-- This profile is active only when used from Eclipse m2e and is used only to store settings. --> <property> <name>m2e.version</name> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.jvnet.hudson.tools</groupId> <artifactId>maven-hpi-plugin</artifactId> <versionRange>[1.48,)</versionRange> <goals> <goal>insert-test</goal> <goal>apt-compile</goal> <goal>test-hpl</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.jvnet.localizer</groupId> <artifactId>maven-localizer-plugin</artifactId> <versionRange>[1.8,)</versionRange> <goals> <goal>generate</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>display-info</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.groovy.maven</groupId> <artifactId>gmaven-plugin</artifactId> <versionRange>[1.0-rc-5,)</versionRange> <goals> <goal>testCompile</goal> <goal>generateTestStubs</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>