This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git
The following commit(s) were added to refs/heads/master by this push:
new 0db7e42 TOMEE-2973 - Examples: Fixes runtime errors due to too old
dependency towards commons-lang3
0db7e42 is described below
commit 0db7e42e16bfee027011d4b24b0a965f4090ad78
Author: Richard Zowalla <[email protected]>
AuthorDate: Fri Mar 5 09:31:46 2021 +0100
TOMEE-2973 - Examples: Fixes runtime errors due to too old dependency
towards commons-lang3
---
examples/arquillian-jpa/pom.xml | 11 +++++++++++
examples/tomee-jersey-eclipselink/pom.xml | 11 +++++++++++
2 files changed, 22 insertions(+)
diff --git a/examples/arquillian-jpa/pom.xml b/examples/arquillian-jpa/pom.xml
index 3479b94..ae25051 100644
--- a/examples/arquillian-jpa/pom.xml
+++ b/examples/arquillian-jpa/pom.xml
@@ -74,6 +74,17 @@ language governing permissions and limitations under the
License. -->
<groupId>org.apache.tomee</groupId>
<artifactId>openejb-core</artifactId>
<version>8.0.7-SNAPSHOT</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.11</version>
</dependency>
<dependency>
<groupId>org.apache.tomee</groupId>
diff --git a/examples/tomee-jersey-eclipselink/pom.xml
b/examples/tomee-jersey-eclipselink/pom.xml
index 9ef7086..d5d5391 100644
--- a/examples/tomee-jersey-eclipselink/pom.xml
+++ b/examples/tomee-jersey-eclipselink/pom.xml
@@ -75,6 +75,17 @@
<groupId>org.apache.tomee</groupId>
<artifactId>openejb-core</artifactId>
<version>8.0.7-SNAPSHOT</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.11</version>
</dependency>
<dependency>
<groupId>junit</groupId>