This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch tomee-9.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 6a7b25e9a7d0b6a4aa88375ec9260ee28586eafb
Author: Richard Zowalla <13417392+r...@users.noreply.github.com>
AuthorDate: Mon Apr 15 20:17:55 2024 +0200

    Post release version fixes
---
 examples/applet/pom.xml                        | 6 +++---
 examples/cdi-dynamic-inject/pom.xml            | 4 ++--
 examples/deltaspike-configproperty/pom.xml     | 6 +++---
 examples/deltaspike-exception-handling/pom.xml | 6 +++---
 examples/deltaspike-fullstack/pom.xml          | 4 ++--
 examples/deltaspike-i18n/pom.xml               | 6 +++---
 examples/mbean-auto-registration/pom.xml       | 4 ++--
 examples/mp-jsonb-configuration/pom.xml        | 4 ++--
 examples/mvc-cxf-hibernate/pom.xml             | 8 ++++----
 examples/mvc-cxf/pom.xml                       | 8 ++++----
 examples/mvc-resteasy/pom.xml                  | 6 +++---
 examples/polling-parent/polling-client/pom.xml | 2 +-
 examples/polling-parent/polling-core/pom.xml   | 2 +-
 examples/polling-parent/polling-domain/pom.xml | 2 +-
 examples/polling-parent/polling-web/pom.xml    | 2 +-
 examples/polling-parent/pom.xml                | 4 ++--
 examples/projectstage-demo/pom.xml             | 4 ++--
 examples/rest-sse-example/pom.xml              | 4 ++--
 examples/spring-data-proxy-meta/pom.xml        | 4 ++--
 examples/spring-data-proxy/pom.xml             | 4 ++--
 examples/tomee-jersey-eclipselink/pom.xml      | 8 ++++----
 examples/vaadin-lts-v08-simple/pom.xml         | 4 ++--
 examples/vaadin-lts-v10-simple/pom.xml         | 2 +-
 examples/vaadin-vxx-simple/pom.xml             | 2 +-
 tomee/tomee-deb/pom.xml                        | 2 +-
 25 files changed, 54 insertions(+), 54 deletions(-)

diff --git a/examples/applet/pom.xml b/examples/applet/pom.xml
index 6c7deb0e30..d18e957f21 100644
--- a/examples/applet/pom.xml
+++ b/examples/applet/pom.xml
@@ -22,7 +22,7 @@
   <groupId>org.superbiz.applet</groupId>
   <artifactId>applet</artifactId>
   <packaging>war</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Web Examples :: Signed Applet EJB Client</name>
   <url>http://tomee.apache.org</url>
   <properties>
@@ -44,7 +44,7 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>openejb-client</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -112,7 +112,7 @@
                 <artifactItem>
                   <groupId>org.apache.tomee</groupId>
                   <artifactId>openejb-client</artifactId>
-                  <version>9.1.3-SNAPSHOT</version>
+                  <version>9.1.4-SNAPSHOT</version>
                   
<outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
                   <destFileName>openejb-client.jar</destFileName>
                 </artifactItem>
diff --git a/examples/cdi-dynamic-inject/pom.xml 
b/examples/cdi-dynamic-inject/pom.xml
index 4a2e697dbb..7b9cc89729 100644
--- a/examples/cdi-dynamic-inject/pom.xml
+++ b/examples/cdi-dynamic-inject/pom.xml
@@ -21,7 +21,7 @@
   <groupId>org.superbiz</groupId>
   <artifactId>cdi-dynamic-inject</artifactId>
   <packaging>jar</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: Dynamic Inject</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -66,7 +66,7 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>openejb-core</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/examples/deltaspike-configproperty/pom.xml 
b/examples/deltaspike-configproperty/pom.xml
index 7192757709..3592c0ffe8 100644
--- a/examples/deltaspike-configproperty/pom.xml
+++ b/examples/deltaspike-configproperty/pom.xml
@@ -21,7 +21,7 @@
   <groupId>org.superbiz</groupId>
   <artifactId>deltaspike-configproperty</artifactId>
   <packaging>jar</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: DeltaSpike @ConfigProperty</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -116,13 +116,13 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>arquillian-openejb-embedded</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>ziplock</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/examples/deltaspike-exception-handling/pom.xml 
b/examples/deltaspike-exception-handling/pom.xml
index 74495132fa..b9ed720f2a 100644
--- a/examples/deltaspike-exception-handling/pom.xml
+++ b/examples/deltaspike-exception-handling/pom.xml
@@ -21,7 +21,7 @@
   <groupId>org.superbiz</groupId>
   <artifactId>deltaspike-exception-handling</artifactId>
   <packaging>jar</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: DeltaSpike Exception Handling</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -84,13 +84,13 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>arquillian-openejb-embedded</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>ziplock</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/examples/deltaspike-fullstack/pom.xml 
b/examples/deltaspike-fullstack/pom.xml
index 44310c2035..b90ac5529f 100644
--- a/examples/deltaspike-fullstack/pom.xml
+++ b/examples/deltaspike-fullstack/pom.xml
@@ -14,14 +14,14 @@
   <groupId>org.superbiz</groupId>
   <artifactId>deltaspike-fullstack</artifactId>
   <name>TomEE :: Examples :: JSF2/CDI/BV/JPA/DeltaSpike</name>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <packaging>war</packaging>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <version.myfaces2>2.3.0</version.myfaces2>
     <version.deltaspike>1.9.3</version.deltaspike>
     <version.extval>2.0.8</version.extval>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
   </properties>
   <build>
     <defaultGoal>install</defaultGoal>
diff --git a/examples/deltaspike-i18n/pom.xml b/examples/deltaspike-i18n/pom.xml
index 03c5983367..e5710dec61 100644
--- a/examples/deltaspike-i18n/pom.xml
+++ b/examples/deltaspike-i18n/pom.xml
@@ -21,7 +21,7 @@
   <groupId>org.superbiz</groupId>
   <artifactId>deltaspike-i18n</artifactId>
   <packaging>jar</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: DeltaSpike I18n</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -84,13 +84,13 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>arquillian-openejb-embedded</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>ziplock</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/examples/mbean-auto-registration/pom.xml 
b/examples/mbean-auto-registration/pom.xml
index f97aeda77e..78333aa7fc 100644
--- a/examples/mbean-auto-registration/pom.xml
+++ b/examples/mbean-auto-registration/pom.xml
@@ -20,11 +20,11 @@
   <groupId>org.superbiz</groupId>
   <artifactId>mbean-auto-registration</artifactId>
   <packaging>jar</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: MBean Auto Registration</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
   </properties>
   <build>
     <defaultGoal>install</defaultGoal>
diff --git a/examples/mp-jsonb-configuration/pom.xml 
b/examples/mp-jsonb-configuration/pom.xml
index abf9a54ab2..e7ed18fc30 100644
--- a/examples/mp-jsonb-configuration/pom.xml
+++ b/examples/mp-jsonb-configuration/pom.xml
@@ -19,13 +19,13 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.superbiz</groupId>
   <artifactId>mp-jsonb-configuration</artifactId>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <packaging>war</packaging>
   <name>TomEE :: Examples :: Microprofile JSONB Configuration</name>
   <properties>
     <version.jakartaee-api>9.1.1</version.jakartaee-api>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
   </properties>
   <dependencies>
     <dependency>
diff --git a/examples/mvc-cxf-hibernate/pom.xml 
b/examples/mvc-cxf-hibernate/pom.xml
index 4c57cddfac..8ce3d784dc 100644
--- a/examples/mvc-cxf-hibernate/pom.xml
+++ b/examples/mvc-cxf-hibernate/pom.xml
@@ -23,11 +23,11 @@
   <packaging>war</packaging>
   <name>TomEE :: Examples :: MVC (CXF-based) with Hibernate</name>
   <description>OpenEJB :: Web Examples :: MVC 1.0 - Deltaspike - 
Hibernate</description>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <url>http://tomee.apache.org</url>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
     <version.deltaspike>1.9.3</version.deltaspike>
     <version.krazo>2.0.2</version.krazo>
     <version.arquillian>1.7.0.Final</version.arquillian>
@@ -58,7 +58,7 @@
       <plugin>
         <groupId>org.apache.tomee.maven</groupId>
         <artifactId>tomee-maven-plugin</artifactId>
-        <version>9.1.3-SNAPSHOT</version>
+        <version>9.1.4-SNAPSHOT</version>
         <configuration>
           <args>-Xmx512m -XX:PermSize=256m</args>
           <libs>
@@ -176,7 +176,7 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>ziplock</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/examples/mvc-cxf/pom.xml b/examples/mvc-cxf/pom.xml
index f17d77f229..8ffdffa328 100644
--- a/examples/mvc-cxf/pom.xml
+++ b/examples/mvc-cxf/pom.xml
@@ -23,11 +23,11 @@
   <packaging>war</packaging>
   <name>TomEE :: Examples :: MVC (CXF-based)</name>
   <description>OpenEJB :: Web Examples :: MVC 1.0 - Deltaspike</description>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <url>http://tomee.apache.org</url>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
     <version.deltaspike>1.9.3</version.deltaspike>
     <version.krazo>2.0.2</version.krazo>
     <version.arquillian>1.7.0.Final</version.arquillian>
@@ -56,7 +56,7 @@
       <plugin>
         <groupId>org.apache.tomee.maven</groupId>
         <artifactId>tomee-maven-plugin</artifactId>
-        <version>9.1.3-SNAPSHOT</version>
+        <version>9.1.4-SNAPSHOT</version>
         <configuration>
           <args>-Xmx512m -XX:PermSize=256m</args>
         </configuration>
@@ -158,7 +158,7 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>ziplock</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/examples/mvc-resteasy/pom.xml b/examples/mvc-resteasy/pom.xml
index a9ed635413..acecf675ea 100644
--- a/examples/mvc-resteasy/pom.xml
+++ b/examples/mvc-resteasy/pom.xml
@@ -23,11 +23,11 @@
   <packaging>war</packaging>
   <name>TomEE :: Examples :: MVC (RestEasy-based)</name>
   <description>TomEE :: Web Examples :: MVC 2.0 - RestEasy</description>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <url>http://tomee.apache.org</url>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
     <version.krazo>2.0.2</version.krazo>
     <resteasy.version>3.15.3.Final</resteasy.version>
     <version.arquillian>1.7.0.Final</version.arquillian>
@@ -79,7 +79,7 @@
       <plugin>
         <groupId>org.apache.tomee.maven</groupId>
         <artifactId>tomee-maven-plugin</artifactId>
-        <version>9.1.3-SNAPSHOT</version>
+        <version>9.1.4-SNAPSHOT</version>
         <configuration>
           <args>-Xmx512m -XX:PermSize=256m</args>
         </configuration>
diff --git a/examples/polling-parent/polling-client/pom.xml 
b/examples/polling-parent/polling-client/pom.xml
index 957e8b5b45..9230803d06 100644
--- a/examples/polling-parent/polling-client/pom.xml
+++ b/examples/polling-parent/polling-client/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <artifactId>polling-parent</artifactId>
     <groupId>jug</groupId>
-    <version>9.1.3-SNAPSHOT</version>
+    <version>9.1.4-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/examples/polling-parent/polling-core/pom.xml 
b/examples/polling-parent/polling-core/pom.xml
index ff1273579a..823d937340 100644
--- a/examples/polling-parent/polling-core/pom.xml
+++ b/examples/polling-parent/polling-core/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <artifactId>polling-parent</artifactId>
     <groupId>jug</groupId>
-    <version>9.1.3-SNAPSHOT</version>
+    <version>9.1.4-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/examples/polling-parent/polling-domain/pom.xml 
b/examples/polling-parent/polling-domain/pom.xml
index 31fee24dbf..24e0e89358 100644
--- a/examples/polling-parent/polling-domain/pom.xml
+++ b/examples/polling-parent/polling-domain/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <artifactId>polling-parent</artifactId>
     <groupId>jug</groupId>
-    <version>9.1.3-SNAPSHOT</version>
+    <version>9.1.4-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
 
diff --git a/examples/polling-parent/polling-web/pom.xml 
b/examples/polling-parent/polling-web/pom.xml
index d6443adaa3..055b932ba2 100644
--- a/examples/polling-parent/polling-web/pom.xml
+++ b/examples/polling-parent/polling-web/pom.xml
@@ -22,7 +22,7 @@
   <parent>
     <artifactId>polling-parent</artifactId>
     <groupId>jug</groupId>
-    <version>9.1.3-SNAPSHOT</version>
+    <version>9.1.4-SNAPSHOT</version>
   </parent>
 
   <artifactId>polling-web</artifactId>
diff --git a/examples/polling-parent/pom.xml b/examples/polling-parent/pom.xml
index fcb7f70d46..2e121e834c 100644
--- a/examples/polling-parent/pom.xml
+++ b/examples/polling-parent/pom.xml
@@ -21,13 +21,13 @@
 
   <groupId>jug</groupId>
   <artifactId>polling-parent</artifactId>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>TomEE :: Examples :: Polling</name>
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
   </properties>
 
   <build>
diff --git a/examples/projectstage-demo/pom.xml 
b/examples/projectstage-demo/pom.xml
index 9717049e2c..6a7c102d58 100644
--- a/examples/projectstage-demo/pom.xml
+++ b/examples/projectstage-demo/pom.xml
@@ -20,10 +20,10 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.superbiz</groupId>
   <artifactId>projectstage-demo</artifactId>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: DeltaSpike ProjectStage</name>
   <properties>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
     <version.deltaspike>1.9.7-SNAPSHOT</version.deltaspike>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
diff --git a/examples/rest-sse-example/pom.xml 
b/examples/rest-sse-example/pom.xml
index 42d8044cc7..28fd95fc9d 100644
--- a/examples/rest-sse-example/pom.xml
+++ b/examples/rest-sse-example/pom.xml
@@ -21,11 +21,11 @@
   <groupId>org.superbiz</groupId>
   <artifactId>rest-sse-example</artifactId>
   <packaging>war</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Web Examples :: REST SSE Example</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
     <version.openjpa>3.2.2</version.openjpa>
   </properties>
   <repositories>
diff --git a/examples/spring-data-proxy-meta/pom.xml 
b/examples/spring-data-proxy-meta/pom.xml
index 3e0572c404..9532ecae8c 100644
--- a/examples/spring-data-proxy-meta/pom.xml
+++ b/examples/spring-data-proxy-meta/pom.xml
@@ -21,7 +21,7 @@
   <groupId>org.superbiz</groupId>
   <artifactId>spring-data-proxy-meta</artifactId>
   <packaging>jar</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: Spring Data Meta</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -77,7 +77,7 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>openejb-core</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
     </dependency>
   </dependencies>
   <!--
diff --git a/examples/spring-data-proxy/pom.xml 
b/examples/spring-data-proxy/pom.xml
index 5c431b09b4..bb236a9368 100644
--- a/examples/spring-data-proxy/pom.xml
+++ b/examples/spring-data-proxy/pom.xml
@@ -21,7 +21,7 @@
   <groupId>org.superbiz</groupId>
   <artifactId>spring-data-proxy</artifactId>
   <packaging>jar</packaging>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: Spring Data</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -77,7 +77,7 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>openejb-core</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
     </dependency>
   </dependencies>
   <!--
diff --git a/examples/tomee-jersey-eclipselink/pom.xml 
b/examples/tomee-jersey-eclipselink/pom.xml
index 60dbb8387c..c675e5e016 100644
--- a/examples/tomee-jersey-eclipselink/pom.xml
+++ b/examples/tomee-jersey-eclipselink/pom.xml
@@ -20,13 +20,13 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.superbiz</groupId>
   <artifactId>tomee-jersey-eclipselink</artifactId>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <packaging>war</packaging>
   <name>TomEE :: Examples :: TomEE, Jersey, Eclipselink</name>
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <version.eclipselink>3.0.3</version.eclipselink>
-    <tomee.version>9.1.3-SNAPSHOT</tomee.version>
+    <tomee.version>9.1.4-SNAPSHOT</tomee.version>
     <arquillian_universe.version>1.2.0.1</arquillian_universe.version>
   </properties>
   <dependencies>
@@ -74,7 +74,7 @@
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>openejb-core</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <exclusions>
         <exclusion>
           <groupId>org.apache.commons</groupId>
@@ -146,7 +146,7 @@
       <plugin>
         <groupId>org.apache.tomee.maven</groupId>
         <artifactId>tomee-maven-plugin</artifactId>
-        <version>9.1.3-SNAPSHOT</version>
+        <version>9.1.4-SNAPSHOT</version>
         <configuration>
           <systemVariables>
             
<com.sun.jersey.server.impl.cdi.lookupExtensionInBeanManager>true</com.sun.jersey.server.impl.cdi.lookupExtensionInBeanManager>
diff --git a/examples/vaadin-lts-v08-simple/pom.xml 
b/examples/vaadin-lts-v08-simple/pom.xml
index e20610e658..7bac67d33a 100644
--- a/examples/vaadin-lts-v08-simple/pom.xml
+++ b/examples/vaadin-lts-v08-simple/pom.xml
@@ -23,7 +23,7 @@
 
   <groupId>org.apache.tomee</groupId>
   <artifactId>vaadin-lts-v08-simple</artifactId>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
 
   <name>TomEE :: Examples :: Vaadin LTS V08</name>
   <packaging>war</packaging>
@@ -106,7 +106,7 @@ http://maven.apache.org/plugins/maven-deploy-plugin/
     <dependency>
       <groupId>org.apache.tomee</groupId>
       <artifactId>openejb-cxf-rs</artifactId>
-      <version>9.1.3-SNAPSHOT</version>
+      <version>9.1.4-SNAPSHOT</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
diff --git a/examples/vaadin-lts-v10-simple/pom.xml 
b/examples/vaadin-lts-v10-simple/pom.xml
index 9e0abc6c1a..0d2b083fc7 100644
--- a/examples/vaadin-lts-v10-simple/pom.xml
+++ b/examples/vaadin-lts-v10-simple/pom.xml
@@ -20,7 +20,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.tomee</groupId>
   <artifactId>vaadin-lts-v10-simple</artifactId>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
   <name>TomEE :: Examples :: Vaadin LTS V10</name>
   <packaging>war</packaging>
   <!--
diff --git a/examples/vaadin-vxx-simple/pom.xml 
b/examples/vaadin-vxx-simple/pom.xml
index 11e3d62b9d..f3564d413e 100644
--- a/examples/vaadin-vxx-simple/pom.xml
+++ b/examples/vaadin-vxx-simple/pom.xml
@@ -23,7 +23,7 @@
 
   <groupId>org.apache.tomee</groupId>
   <artifactId>vaadin-vxx-simple</artifactId>
-  <version>9.1.3-SNAPSHOT</version>
+  <version>9.1.4-SNAPSHOT</version>
 
   <name>TomEE :: Examples :: Vaadin LATEST</name>
   <packaging>war</packaging>
diff --git a/tomee/tomee-deb/pom.xml b/tomee/tomee-deb/pom.xml
index eec6731cc3..f57ef1e144 100644
--- a/tomee/tomee-deb/pom.xml
+++ b/tomee/tomee-deb/pom.xml
@@ -17,7 +17,7 @@
   <parent>
     <artifactId>tomee</artifactId>
     <groupId>org.apache.tomee</groupId>
-    <version>9.1.3-SNAPSHOT</version>
+    <version>9.1.4-SNAPSHOT</version>
     <relativePath>../pom.xml</relativePath>
   </parent>
 

Reply via email to