Download sonar-jacoco-listeners-3.8.jar file

Introduction

You can download sonar-jacoco-listeners-3.8.jar in this page.

License

Open Source

Type List

sonar-jacoco-listeners-3.8.jar file has the following types.

META-INF.maven.org.sonarsource.java.sonar-jacoco-listeners.pom.properties
META-INF.maven.org.sonarsource.java.sonar-jacoco-listeners.pom.xml
META-INF/MANIFEST.MF
org.sonar.java.jacoco.JUnitListener.class
org.sonar.java.jacoco.JacocoController.class
org.sonar.java.jacoco.TestNGListener.class

Pom

sonar-jacoco-listeners-3.8.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.sonarsource.java</groupId>
    <artifactId>java</artifactId>
    <version>3.8</version>
  </parent>

  <artifactId>sonar-jacoco-listeners</artifactId>

  <name>SonarQube Java :: JaCoCo Listeners</name>

  <dependencies>
    <dependency>
      <groupId>org.jacoco</groupId>
      <artifactId>org.jacoco.agent</artifactId>
      <classifier>runtime</classifier>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.testng</groupId>
      <artifactId>testng</artifactId>
      <version>6.8</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <testNGArtifactName>none:none</testNGArtifactName>
          <properties>
            <!-- To prevent failure of tests with profile "coverage-per-test": -->
            <property>
              <name>listener</name>
              <value>org.sonar.java.jacoco.FakeListener</value>
            </property>
          </properties>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>org.sonarsource.java</groupId>
   <artifactId>sonar-jacoco-listeners</artifactId>
   <version>3.8</version>
</dependency>

Download

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



Download sonar-jacoco-listeners-3.8.jar file




PreviousNext

Related