Skip to content
This repository has been archived by the owner on Feb 9, 2023. It is now read-only.

Commit

Permalink
Updates version of Cucumber to 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
haroon-sheikh committed Dec 28, 2017
1 parent bea9cd0 commit 157cbde
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## Changelog
## CHANGELOG
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

### v3.1.1
- Updates version of Cucumber to `2.3.1`

### v3.1.0
- Copies `TestSourcesModel` within the project due to class no longer visible outside the cucumber package. For more info: https://github.com/cucumber/cucumber-jvm/pull/1253

Expand Down
2 changes: 1 addition & 1 deletion examples/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<cucumber-jvm-extentreport.version>3.1.0-SNAPSHOT</cucumber-jvm-extentreport.version>
<cucumber-jvm-extentreport.version>3.1.1-SNAPSHOT</cucumber-jvm-extentreport.version>
<extentreports.version>3.0.7</extentreports.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<java.version>1.8</java.version>
Expand Down
17 changes: 15 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.sitture</groupId>
<artifactId>cucumber-jvm-extentreport</artifactId>
<packaging>jar</packaging>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.1-SNAPSHOT</version>
<name>cucumber-jvm-extentreport</name>
<url>https://github.com/sitture/cucumber-jvm-extentreport</url>
<description>A custom cucumber-jvm formatter using ExtentReports</description>
Expand All @@ -14,7 +14,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<extentreports.version>3.0.7</extentreports.version>
<cucumber.version>2.1.0</cucumber.version>
<cucumber.version>2.3.1</cucumber.version>
<junit.version>4.12</junit.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
Expand Down Expand Up @@ -169,4 +169,17 @@
</profile>
</profiles>

<repositories>
<repository>
<id>you-snapshots</id>
<url>http://host/nexus/repos/snapshots</url>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<updatePolicy>always</updatePolicy>
</releases>
</repository>
</repositories>

</project>

0 comments on commit 157cbde

Please sign in to comment.