Skip to content

Commit 517c5fb

Browse files
authored
[BOM] Add missing dependencies to bill of materials (#2496)
1 parent fe47806 commit 517c5fb

File tree

2 files changed

+41
-15
lines changed

2 files changed

+41
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2626
- `javax.activation:activation`
2727
- `org.glassfish.jaxb:jaxb-runtime`
2828
- [TestNG] Remove spurious Optional\[<Feature Name>] from test name ([#2488](https://github.com/cucumber/cucumber-jvm/pull/2488) M.P. Korstanje)
29+
* [BOM] Add missing dependencies to bill of materials ([#2496](https://github.com/cucumber/cucumber-jvm/pull/2496) M.P. Korstanje)
2930

3031
## [7.2.3] (2022-01-13)
3132

bom/pom.xml

Lines changed: 40 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<dependencyManagement>
2323
<dependencies>
24-
24+
<!-- Modules in the cucumber org -->
2525
<dependency>
2626
<groupId>io.cucumber</groupId>
2727
<artifactId>tag-expressions</artifactId>
@@ -42,6 +42,27 @@
4242
<artifactId>html-formatter</artifactId>
4343
<version>${html-formatter.version}</version>
4444
</dependency>
45+
<dependency>
46+
<groupId>io.cucumber</groupId>
47+
<artifactId>ci-environment</artifactId>
48+
<version>${ci-environment.version}</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>io.cucumber</groupId>
52+
<artifactId>gherkin</artifactId>
53+
<version>${gherkin.version}</version>
54+
</dependency>
55+
<!-- Modules in cucumber-jvm -->
56+
<dependency>
57+
<groupId>io.cucumber</groupId>
58+
<artifactId>cucumber-cdi2</artifactId>
59+
<version>7.3.0-SNAPSHOT</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>io.cucumber</groupId>
63+
<artifactId>cucumber-core</artifactId>
64+
<version>7.3.0-SNAPSHOT</version>
65+
</dependency>
4566
<dependency>
4667
<groupId>io.cucumber</groupId>
4768
<artifactId>datatable</artifactId>
@@ -54,28 +75,32 @@
5475
</dependency>
5576
<dependency>
5677
<groupId>io.cucumber</groupId>
57-
<artifactId>ci-environment</artifactId>
58-
<version>${ci-environment.version}</version>
78+
<artifactId>cucumber-deltaspike</artifactId>
79+
<version>7.3.0-SNAPSHOT</version>
5980
</dependency>
6081
<dependency>
6182
<groupId>io.cucumber</groupId>
62-
<artifactId>gherkin</artifactId>
63-
<version>${gherkin.version}</version>
83+
<artifactId>docstring</artifactId>
84+
<version>7.3.0-SNAPSHOT</version>
6485
</dependency>
65-
6686
<dependency>
6787
<groupId>io.cucumber</groupId>
68-
<artifactId>docstring</artifactId>
88+
<artifactId>cucumber-gherkin</artifactId>
6989
<version>7.3.0-SNAPSHOT</version>
7090
</dependency>
7191
<dependency>
7292
<groupId>io.cucumber</groupId>
73-
<artifactId>cucumber-plugin</artifactId>
93+
<artifactId>cucumber-gherkin-messages</artifactId>
7494
<version>7.3.0-SNAPSHOT</version>
7595
</dependency>
7696
<dependency>
7797
<groupId>io.cucumber</groupId>
78-
<artifactId>cucumber-core</artifactId>
98+
<artifactId>cucumber-guice</artifactId>
99+
<version>7.3.0-SNAPSHOT</version>
100+
</dependency>
101+
<dependency>
102+
<groupId>io.cucumber</groupId>
103+
<artifactId>cucumber-jakarta-cdi</artifactId>
79104
<version>7.3.0-SNAPSHOT</version>
80105
</dependency>
81106
<dependency>
@@ -90,17 +115,17 @@
90115
</dependency>
91116
<dependency>
92117
<groupId>io.cucumber</groupId>
93-
<artifactId>cucumber-spring</artifactId>
118+
<artifactId>cucumber-junit</artifactId>
94119
<version>7.3.0-SNAPSHOT</version>
95120
</dependency>
96121
<dependency>
97122
<groupId>io.cucumber</groupId>
98-
<artifactId>cucumber-junit</artifactId>
123+
<artifactId>cucumber-junit-platform-engine</artifactId>
99124
<version>7.3.0-SNAPSHOT</version>
100125
</dependency>
101126
<dependency>
102127
<groupId>io.cucumber</groupId>
103-
<artifactId>cucumber-testng</artifactId>
128+
<artifactId>cucumber-openejb</artifactId>
104129
<version>7.3.0-SNAPSHOT</version>
105130
</dependency>
106131
<dependency>
@@ -110,17 +135,17 @@
110135
</dependency>
111136
<dependency>
112137
<groupId>io.cucumber</groupId>
113-
<artifactId>cucumber-gherkin</artifactId>
138+
<artifactId>cucumber-plugin</artifactId>
114139
<version>7.3.0-SNAPSHOT</version>
115140
</dependency>
116141
<dependency>
117142
<groupId>io.cucumber</groupId>
118-
<artifactId>cucumber-gherkin-messages</artifactId>
143+
<artifactId>cucumber-spring</artifactId>
119144
<version>7.3.0-SNAPSHOT</version>
120145
</dependency>
121146
<dependency>
122147
<groupId>io.cucumber</groupId>
123-
<artifactId>cucumber-junit-platform-engine</artifactId>
148+
<artifactId>cucumber-testng</artifactId>
124149
<version>7.3.0-SNAPSHOT</version>
125150
</dependency>
126151
</dependencies>

0 commit comments

Comments
 (0)