cluecumber-report-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.trivago.rta</groupId> <artifactId>cluecumber-report-plugin</artifactId> <version>2.9.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <groupId>com.trivago.rta</groupId> <artifactId>cluecumber-report-plugin</artifactId> <version>2.9.4</version> <url>https://github.com/trivago/cluecumber-report-plugin</url> <name>Cluecumber Maven Plugin for Cucumber Reports</name> <description>Plugin for generating clear Cucumber BDD test result reports.</description> <inceptionYear>2017</inceptionYear> <organization> <name>trivago N.V.</name> <url>https://www.trivago.de</url> </organization> <developers> <developer> <name>Benjamin Bischoff</name> <organization>trivago N.V.</organization> <organizationUrl>https://www.trivago.de</organizationUrl> <roles> <role>Test Automation Engineer</role> <role>Knowledge Lead Test Automation</role> </roles> <url>https://www.softwaretester.blog</url> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <packaging>maven-plugin</packaging> <scm> <connection>scm:git:git@github.com:trivago/cluecumber-report-plugin.git</connection> <developerConnection>scm:git:git@github.com:trivago/cluecumber-report-plugin.git</developerConnection> <url>https://git@github.com:trivago/cluecumber-report-plugin.git</url> </scm> <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.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding> <maven.compile.encoding>UTF-8</maven.compile.encoding> <maven.version>3.8.5</maven.version> <maven.gpg.plugin.version>3.0.1</maven.gpg.plugin.version> <nexus.staging.maven.plugin.version>1.6.13</nexus.staging.maven.plugin.version> <maven.plugin.plugin.version>3.6.0</maven.plugin.plugin.version> <maven.jar.plugin.version>3.0.2</maven.jar.plugin.version> <maven.compiler.plugin.version>3.6.1</maven.compiler.plugin.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.plugin.testing.harness.version>3.3.0</maven.plugin.testing.harness.version> <javax.inject.version>1</javax.inject.version> <maven.jar.plugin.version>3.0.2</maven.jar.plugin.version> <plexus.component.annotations.version>2.1.1</plexus.component.annotations.version> <maven.plugin.annotations.version>3.6.4</maven.plugin.annotations.version> <maven.source.plugin.version>2.4</maven.source.plugin.version> <plexus.utilities.version>3.4.2</plexus.utilities.version> <jacoco.version>0.8.7</jacoco.version> <mockito.version>4.8.0</mockito.version> <junit5.vintage.version>5.9.0</junit5.vintage.version> <openpojo.version>0.9.1</openpojo.version> <gson.version>2.9.0</gson.version> <gsonfire.version>1.9.0-alpha2</gsonfire.version> <freemarker.version>2.3.31</freemarker.version> </properties> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</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>${nexus.staging.maven.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven.plugin.plugin.version}</version> <configuration> <goalPrefix>cluecumber-report</goalPrefix> <skipErrorNoDescriptorsFound>false</skipErrorNoDescriptorsFound> <encoding>${project.build.sourceEncoding}</encoding> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-descriptor</id> <goals> <goal>helpmojo</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>${javax.inject.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.plugin.annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <dependency> <groupId>io.gsonfire</groupId> <artifactId>gson-fire</artifactId> <version>${gsonfire.version}</version> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>${freemarker.version}</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>${plexus.utilities.version}</version> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>${junit5.vintage.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.openpojo</groupId> <artifactId>openpojo</artifactId> <version>${openpojo.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>${maven.plugin.testing.harness.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-annotations</artifactId> <version>${plexus.component.annotations.version}</version> <scope>test</scope> </dependency> </dependencies> </project>