You can download cucumber-pro-1.0.16.jar in this page.
MIT License
cucumber-pro-1.0.16.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/info.cukes/cucumber-pro/pom.properties META-INF/maven/info.cukes/cucumber-pro/pom.xml cucumber.pro.CucumberProFormatter.class cucumber.pro.Global.class cucumber.pro.results.BuildIdGenerator.class cucumber.pro.results.Debug.class cucumber.pro.results.Header.class cucumber.pro.results.Info.class cucumber.pro.results.JsonDecoder.class cucumber.pro.results.JsonEncoder.class cucumber.pro.results.MetadataApi.class cucumber.pro.results.NullMetadataClient.class cucumber.pro.results.Response.class cucumber.pro.results.Status.class cucumber.pro.results.WebSocketMetadataClient.class cucumber.pro.results.metadata.JsonBody.class cucumber.pro.results.metadata.Metadata.class cucumber.pro.results.metadata.Result.class cucumber.pro.results.metadata.StackTrace.class cucumber.pro.results.metadata.TestCaseResult.class cucumber.pro.results.metadata.TestStepResult.class cucumber.pro.scm.CustomWorkingCopy.class cucumber.pro.scm.Exec.class cucumber.pro.scm.GitWorkingCopy.class cucumber.pro.scm.SvnWorkingCopy.class cucumber.pro.scm.WorkingCopy.class cucumber.pro.scm.WorkingCopyDetector.class cucumber/pro/version.properties
cucumber-pro-1.0.16.pom file content.
<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> <groupId>info.cukes</groupId> <artifactId>cucumber-pro</artifactId> <version>1.0.16</version> <packaging>jar</packaging> <name>Cucumber Pro</name> <description>Cucumber-JVM plugin for Cucumber Pro</description> <url>http://cucumber.pro/</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <cucumber-jvm.version>1.1.8</cucumber-jvm.version> </properties> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/cucumber-ltd/cucumber-pro-jvm.git</connection> <developerConnection>scm:git:git@github.com:cucumber-ltd/cucumber-pro-jvm.git</developerConnection> <url>git://github.com/cucumber-ltd/cucumber-pro-jvm.git</url> <tag>v1.0.16</tag> </scm> <dependencies> <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-client-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.glassfish.tyrus</groupId> <artifactId>tyrus-client</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>org.glassfish.tyrus</groupId> <artifactId>tyrus-container-grizzly-client</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-core</artifactId> <version>${cucumber-jvm.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-java</artifactId> <version>${cucumber-jvm.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-junit</artifactId> <version>${cucumber-jvm.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.webbitserver</groupId> <artifactId>webbit</artifactId> <version>0.4.15</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <configuration> <useAgent>true</useAgent> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>travis-disable-deploy-by-default</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>env.TRAVIS</name> <value>true</value> </property> </activation> <properties> <maven.deploy.skip>true</maven.deploy.skip> </properties> </profile> <profile> <id>travis-enable-deploy-if-not-pull-request</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>env.TRAVIS_PULL_REQUEST</name> <value>false</value> </property> </activation> <properties> <maven.deploy.skip>false</maven.deploy.skip> </properties> </profile> </profiles> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <pluginManagement> <plugins> <!-- Standard plugins - alphabetically --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> <configuration> <filesets> <fileset> <directory>.</directory> <includes> <include>**/*.ser</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <encoding>UTF-8</encoding> <compilerVersion>1.6</compilerVersion> <source>1.6</source> <target>1.6</target> <compilerArgument>-Werror</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>bind-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> </plugin> </plugins> </pluginManagement> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>2.6</version> </extension> </extensions> </build> </project>
<dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-pro</artifactId> <version>1.0.16</version> </dependency>
If you think the following cucumber-pro-1.0.16.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download cucumber-pro-1.0.16.jar file