cucumber-sandwich
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.masterthought</groupId> <artifactId>cucumber-sandwich</artifactId> <version>5.9.0</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.masterthought</groupId> <artifactId>cucumber-sandwich</artifactId> <packaging>jar</packaging> <version>5.9.0</version> <name>cucumber-sandwich</name> <url>https://github.com/damianszczepanik/cucumber-sandwich</url> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.release>11</maven.compiler.release> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding> </properties> <scm> <connection>scm:git:https://github.com/damianszczepanik/cucumber-sandwich.git</connection> <developerConnection>scm:git:git@github.com:damianszczepanik/cucumber-sandwich.git</developerConnection> <url>git@github.com:damianszczepanik/cucumber-sandwich.git</url> <tag>cucumber-sandwich-5.9.0</tag> </scm> <ciManagement> <system>GitHub Actions</system> <url>https://github.com/damianszczepanik/cucumber-sandwich/actions</url> </ciManagement> <description> This project displays a report locally </description> <licenses> <license> <name>LGPL 2.1</name> <url>https://www.gnu.org/licenses/lgpl-2.1.html</url> </license> </licenses> <developers> <developer> <id>damianszczepanik</id> <name>Damian Szczepanik</name> <email>damianszczepanik@github</email> </developer> <developer> <id>kingsleyh</id> <name>Kingsley Hendrickse</name> <email>kingsley.hendrickse@gmail.com</email> </developer> </developers> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <!-- will be set by the release plugin upon performing mvn release:clean release:prepare release:perform --> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <!-- browse: snapshots https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/net/masterthought/cucumber-sandwich/ --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>sonatype-central</publishingServerId> <checksums>all</checksums> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <source>11</source> <target>11</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>net.masterthought.cucumber.sandwich.CucumberReportMonitor</mainClass> </manifest> </archive> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <!-- do not warn about missing javadoc --> <doclint>-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> <version>1.82</version> </dependency> <dependency> <groupId>net.masterthought</groupId> <artifactId>cucumber-reporting</artifactId> <version>5.9.0</version> </dependency> </dependencies> </project>