Skip to content

Commit 7499a6a

Browse files
[OpenEJB] Remove spurious dependencies (#2477)
The jakarta version of: - javax.activation:activation - org.glassfish.jaxb:jaxb-runtime are provided with org.apache.tomee:openejb-core:jar and need not be explicitly included.
1 parent 2dcab4c commit 7499a6a

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1919
### Removed
2020

2121
### Fixed
22+
* [OpenEJB] Remove spurious dependencies ([#2477](https://github.com/cucumber/cucumber-jvm/pull/2477) M.P. Korstanje)
23+
- Removed spurious dependencies:
24+
- `javax.activation:activation`
25+
- `org.glassfish.jaxb:jaxb-runtime`
2226

2327
## [7.2.3] (2022-01-13)
2428

openejb/pom.xml

-18
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
<name>Cucumber-JVM: OpenEJB</name>
1313

1414
<properties>
15-
<activation.version>1.1.1</activation.version>
1615
<apiguardian-api.version>1.1.2</apiguardian-api.version>
1716
<hamcrest.version>2.2</hamcrest.version>
18-
<jaxb-api.version>2.3.1</jaxb-api.version>
1917
<junit-jupiter.version>5.8.2</junit-jupiter.version>
2018
<openejb-core.version>8.0.9</openejb-core.version>
2119
<project.Automatic-Module-Name>io.cucumber.openejb</project.Automatic-Module-Name>
@@ -56,22 +54,6 @@
5654
<version>${openejb-core.version}</version>
5755
<scope>provided</scope>
5856
</dependency>
59-
<dependency>
60-
<groupId>javax.xml.bind</groupId>
61-
<artifactId>jaxb-api</artifactId>
62-
<version>${jaxb-api.version}</version>
63-
<scope>test</scope>
64-
</dependency>
65-
<dependency>
66-
<groupId>javax.activation</groupId>
67-
<artifactId>activation</artifactId>
68-
<version>${activation.version}</version>
69-
</dependency>
70-
<dependency>
71-
<groupId>org.glassfish.jaxb</groupId>
72-
<artifactId>jaxb-runtime</artifactId>
73-
<version>${jaxb-api.version}</version>
74-
</dependency>
7557

7658
<dependency>
7759
<groupId>io.cucumber</groupId>

0 commit comments

Comments
 (0)