Download sonar-maven-plugin-5.1.jar file

Introduction

You can download sonar-maven-plugin-5.1.jar in this page.

License

Open Source

Type List

sonar-maven-plugin-5.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.codehaus.sonar/sonar-maven-plugin/plugin-help.xml
META-INF/maven/org.codehaus.sonar/sonar-maven-plugin/pom.properties
META-INF/maven/org.codehaus.sonar/sonar-maven-plugin/pom.xml
META-INF/maven/plugin.xml
org.sonar.maven.SonarMojo.class

Pom

sonar-maven-plugin-5.1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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>5.1</version>
  </parent>
  <artifactId>sonar-maven-plugin</artifactId>
  <packaging>maven-plugin</packaging>
  <name>SonarQube :: Maven2 Plugin</name>

  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>2.2.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-artifact</artifactId>
      <version>2.2.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-core</artifactId>
      <version>2.2.0</version>
      <scope>provided</scope>
    </dependency>

    <!-- Test -->
    <dependency>
      <groupId>org.codehaus.sonar</groupId>
      <artifactId>sonar-testing-harness</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <skipTests>${skipBatchTests}</skipTests>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.codehaus.sonar</groupId>
   <artifactId>sonar-maven-plugin</artifactId>
   <version>5.1</version>
</dependency>

Download

If you think the following sonar-maven-plugin-5.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download sonar-maven-plugin-5.1.jar file




PreviousNext

Related