Download sonar-surefire-plugin-2.7.jar file

Introduction

You can download sonar-surefire-plugin-2.7.jar in this page.

License

Open Source

Type List

sonar-surefire-plugin-2.7.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.codehaus.sonar.plugins/sonar-surefire-plugin/pom.properties
META-INF/maven/org.codehaus.sonar.plugins/sonar-surefire-plugin/pom.xml
org.sonar.plugins.surefire.SurefirePlugin.class
org.sonar.plugins.surefire.SurefireSensor.class
org.sonar.plugins.surefire.TestCaseDetails.class
org.sonar.plugins.surefire.TestSuiteParser.class
org.sonar.plugins.surefire.TestSuiteReport.class
org.sonar.plugins.surefire.api.AbstractSurefireParser.class
org.sonar.plugins.surefire.api.SurefireUtils.class

Pom

sonar-surefire-plugin-2.7.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>2.7</version>
    <relativePath>../..</relativePath>
  </parent>
  <groupId>org.codehaus.sonar.plugins</groupId>
  <artifactId>sonar-surefire-plugin</artifactId>
  <packaging>sonar-plugin</packaging>
  <name>Sonar :: Plugins :: Surefire</name>

  <dependencies>
    <dependency>
      <groupId>org.codehaus.sonar</groupId>
      <artifactId>sonar-plugin-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-project</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-core</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.codehaus.sonar</groupId>
      <artifactId>sonar-testing-harness</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <testResources>
      <testResource>
        <directory>${basedir}/src/main/resources</directory>
      </testResource>
      <testResource>
        <directory>${basedir}/src/test/resources</directory>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
        <groupId>org.codehaus.sonar</groupId>
        <artifactId>sonar-packaging-maven-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <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>
      <!-- Running JUnit tests in parallel -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <parallel>classes</parallel>
          <threadCount>3</threadCount>
          <perCoreThreadCount>true</perCoreThreadCount>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.codehaus.sonar.plugins</groupId>
   <artifactId>sonar-surefire-plugin</artifactId>
   <version>2.7</version>
</dependency>

Download

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



Download sonar-surefire-plugin-2.7.jar file




PreviousNext

Related