Skip to content

Use message based TestNG formatter #2863

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Apr 5, 2024
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- [Core] Use a [message based TestNG XML Formatter](https://github.com/cucumber/testng-xml-formatter) ([#2863](https://github.com/cucumber/cucumber-jvm/pull/2863) M.P. Korstanje)

## [7.16.1] - 2024-03-23
### Fixed
Expand Down Expand Up @@ -37,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Core] Added Irish translation of "Rule" ([gherkin/#216](https://github.com/cucumber/gherkin/pull/216))

### Fixed
- [Core] Missing execution steps statuses ([cucumber-junit-xml-formatter/#24](https://github.com/cucumber/cucumber-junit-xml-formatter/pull/24) F. Ahadi)
- [Core] Missing execution steps statuses ([junit-xml-formatter/#24](https://github.com/cucumber/junit-xml-formatter/pull/24) F. Ahadi)
- [Core] Parse negative numbers in Norwegian (and 59 other languages) ([cucumber-expressions/#290](https://github.com/cucumber/cucumber-expressions/pull/290))

## [7.15.0] - 2023-12-11
Expand Down Expand Up @@ -104,7 +106,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [JUnit Platform] Support `cucumber.execution.parallel.config.config.fixed.max-pool-size` ([#2681](https://github.com/cucumber/cucumber-jvm/pull/2681) M.P. Korstanje)

### Changed
- [Core] Use a [message based JUnit XML Formatter](https://github.com/cucumber/cucumber-junit-xml-formatter) ([#2638](https://github.com/cucumber/cucumber-jvm/pull/2638) M.P. Korstanje)
- [Core] Use a [message based JUnit XML Formatter](https://github.com/cucumber/junit-xml-formatter) ([#2638](https://github.com/cucumber/cucumber-jvm/pull/2638) M.P. Korstanje)
- [Core] Throw an exception when tag expressions are incorrectly escaped ([tag-expressions/#17](https://github.com/cucumber/tag-expressions/pull/17) Aslak Hellesøy)
- [DeltaSpike] Un-Deprecated deltaspike - can be made to work on Java 17 ([#2674](https://github.com/cucumber/cucumber-jvm/pull/2674) M.P. Korstanje)

Expand Down
38 changes: 26 additions & 12 deletions cucumber-bom/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<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">
<parent>
<artifactId>cucumber-jvm</artifactId>
<groupId>io.cucumber</groupId>
Expand All @@ -16,28 +17,30 @@
<cucumber-expressions.version>17.1.0</cucumber-expressions.version>
<gherkin.version>28.0.0</gherkin.version>
<html-formatter.version>21.3.1</html-formatter.version>
<junit-xml-formatter.version>0.3.0</junit-xml-formatter.version>
<junit-xml-formatter.version>0.4.0</junit-xml-formatter.version>
<messages.version>24.1.0</messages.version>
<query.version>12.1.2</query.version>
<tag-expressions.version>6.1.0</tag-expressions.version>
<testng-xml-formatter.version>0.1.0</testng-xml-formatter.version>
</properties>

<dependencyManagement>
<dependencies>
<!-- Modules in the cucumber org -->
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>tag-expressions</artifactId>
<version>${tag-expressions.version}</version>
<artifactId>ci-environment</artifactId>
<version>${ci-environment.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>messages</artifactId>
<version>${messages.version}</version>
<artifactId>cucumber-expressions</artifactId>
<version>${cucumber-expressions.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-expressions</artifactId>
<version>${cucumber-expressions.version}</version>
<artifactId>gherkin</artifactId>
<version>${gherkin.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
Expand All @@ -51,14 +54,25 @@
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>ci-environment</artifactId>
<version>${ci-environment.version}</version>
<artifactId>messages</artifactId>
<version>${messages.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>gherkin</artifactId>
<version>${gherkin.version}</version>
<artifactId>query</artifactId>
<version>${query.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>tag-expressions</artifactId>
<version>${tag-expressions.version}</version>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>testng-xml-formatter</artifactId>
<version>${testng-xml-formatter.version}</version>
</dependency>

<!-- Modules in cucumber-jvm -->
<dependency>
<groupId>io.cucumber</groupId>
Expand Down
4 changes: 4 additions & 0 deletions cucumber-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@
<groupId>io.cucumber</groupId>
<artifactId>messages</artifactId>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>testng-xml-formatter</artifactId>
</dependency>
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>tag-expressions</artifactId>
Expand Down
Loading
Loading