diff-coverage-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.surpsg</groupId> <artifactId>diff-coverage-maven-plugin</artifactId> <version>0.3.3</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> <groupId>com.github.surpsg</groupId> <artifactId>diff-coverage-maven-plugin</artifactId> <name>${project.groupId}:${project.artifactId}</name> <packaging>maven-plugin</packaging> <version>0.3.3</version> <description> Diff coverage maven plugin builds code coverage report of new and modified code based on a provided diff </description> <url>https://github.com/SurpSG/diff-coverage-maven-plugin</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Sergii Gnatiuk</name> <email>surpsg2012@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/SurpSG/diff-coverage-maven-plugin</url> <connection>scm:git:git://github.com/SurpSG/diff-coverage-maven-plugin.git</connection> <developerConnection>scm:git:ssh://github.com/SurpSG/diff-coverage-maven-plugin.git</developerConnection> </scm> <issueManagement> <system>Github</system> <url>https://github.com/SurpSG/diff-coverage-maven-plugin/issues</url> </issueManagement> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kotlin.code.style>official</kotlin.code.style> <diff.source>HEAD</diff.source> <maven.version>3.9.4</maven.version> <maven.plugin.tools.version>3.9.0</maven.plugin.tools.version> <kotlin.version>1.4.32</kotlin.version> <kotlin.compiler.incremental>true</kotlin.compiler.incremental> <junit.version>4.13.2</junit.version> <jacoco.version>0.8.10</jacoco.version> <delt.coverage.core.version>0.9.5</delt.coverage.core.version> <diff.coverage.plugin.version>0.3.2</diff.coverage.plugin.version> </properties> <pluginRepositories> <pluginRepository> <id>jcenter</id> <name>JCenter</name> <url>https://jcenter.bintray.com/</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.plugin.tools.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.form-com.diff-coverage-gradle</groupId> <artifactId>jacoco-filtering-extension</artifactId> <version>${delt.coverage.core.version}</version> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.core</artifactId> <version>${jacoco.version}</version> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.report</artifactId> <version>${jacoco.version}</version> </dependency> <dependency> <groupId>org.eclipse.jgit</groupId> <artifactId>org.eclipse.jgit</artifactId> <version>6.2.0.202206071550-r</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.5.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven.plugin.tools.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>pre-integration-test</id> <phase>pre-integration-test</phase> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${project.build.directory}/jacoco-it.exec</destFile> <propertyName>invoker.mavenOpts</propertyName> </configuration> </execution> <execution> <id>post-integration-test</id> <phase>post-integration-test</phase> <goals> <goal>merge</goal> </goals> <configuration> <fileSets> <fileSet> <directory>${project.build.directory}</directory> <includes> <include>*.exec</include> </includes> </fileSet> </fileSets> <destFile>${project.build.directory}/fullCoverage.exec</destFile> </configuration> </execution> <execution> <phase>post-integration-test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${project.build.directory}/fullCoverage.exec</dataFile> <outputDirectory>${project.reporting.outputDirectory}/jacoco-fullCoverage</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>3.3.0</version> <configuration> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <postBuildHookScript>verify</postBuildHookScript> <preBuildHookScript>setup</preBuildHookScript> <addTestClassPath>true</addTestClassPath> <showErrors>true</showErrors> <streamLogsOnFailures>true</streamLogsOnFailures> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <pomExcludes> <!-- Temporary exclude this tests. We need to move to another testing plugin to check this cases --> <pomExclude>git-diff-support/pom.xml</pomExclude> <pomExclude>url-source-check/pom.xml</pomExclude> </pomExcludes> <pomIncludes> <pomInclude>*/pom.xml</pomInclude> </pomIncludes> <goals> <goal>clean</goal> <goal>install</goal> </goals> <settingsFile>src/it/settings.xml</settingsFile> </configuration> <executions> <execution> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.github.surpsg</groupId> <artifactId>diff-coverage-maven-plugin</artifactId> <version>${diff.coverage.plugin.version}</version> <configuration> <dataFile>${project.build.directory}/fullCoverage.exec</dataFile> <diffSource> <git>${diff.source}</git> </diffSource> <violations> <failOnViolation>true</failOnViolation> <minCoverage>0.9</minCoverage> </violations> </configuration> <executions> <execution> <goals> <goal>diffCoverage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <attach>true</attach> <forceCreation>true</forceCreation> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>1.4.32</version> <executions> <execution> <phase>pre-site</phase> <goals> <goal>dokka</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>