cucumber-sandwich
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.masterthought</groupId> <artifactId>cucumber-sandwich</artifactId> <version>5.8.0</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>net.masterthought</groupId> <artifactId>cucumber-sandwich</artifactId> <packaging>jar</packaging> <version>5.8.0</version> <name>cucumber-sandwich</name> <url>https://github.com/damianszczepanik/cucumber-sandwich</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <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> <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> </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>http://www.gnu.org/licenses/lgpl-2.1.html</url> </license> </licenses> <developers> <developer> <id>kingsleyh</id> <name>Kingsley Hendrickse</name> <email>kingsley.hendrickse@gmail.com</email> </developer> <developer> <id>damianszczepanik</id> <name>Damian Szczepanik</name> <email>damianszczepanik@github</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> <properties> <gpg.keyname>0738FA8F</gpg.keyname> <release.username>Damian Szczepanik</release.username> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.12.0</version> <configuration> <source>11</source> <target>11</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</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.0</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.6.3</version> <configuration> <source>11</source> </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.8.4</version> </dependency> </dependencies> </project>