CAMEL-14517: Polished examples since JAXB is no longer needed
diff --git a/camel-example-main-tiny/pom.xml b/camel-example-main-tiny/pom.xml
index b553353..d802b36 100644
--- a/camel-example-main-tiny/pom.xml
+++ b/camel-example-main-tiny/pom.xml
@@ -39,18 +39,6 @@
 
     <dependencies>
 
-        <!-- use camel-core-engine that has minimal JAR dependency set -->
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-core-engine</artifactId>
-            <exclusions>
-                <!-- we dont need json-utils -->
-                <exclusion>
-                    <groupId>org.apache.camel</groupId>
-                    <artifactId>camel-util-json</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
         <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-main</artifactId>
@@ -76,23 +64,10 @@
             <artifactId>camel-timer</artifactId>
         </dependency>
 
-        <!-- we dont need JAXB which at this moment can only be turned off like this in camel source project -->
-        <dependency>
-            <groupId>com.sun.xml.bind</groupId>
-            <artifactId>jaxb-core</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.sun.xml.bind</groupId>
-            <artifactId>jaxb-impl</artifactId>
-            <scope>test</scope>
-        </dependency>
-
         <!-- logging -->
         <dependency>
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-api</artifactId>
-            <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>ch.qos.logback</groupId>
diff --git a/camel-example-main-xml/pom.xml b/camel-example-main-xml/pom.xml
index 2a635fc..4c84cde 100644
--- a/camel-example-main-xml/pom.xml
+++ b/camel-example-main-xml/pom.xml
@@ -43,6 +43,11 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-main</artifactId>
         </dependency>
+        <!-- use fast and light-weight xml parser -->
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-xml-io</artifactId>
+        </dependency>
 
         <!-- and we use these components -->
         <dependency>
@@ -58,17 +63,10 @@
             <artifactId>camel-quartz</artifactId>
         </dependency>
 
-        <!-- use fast and light-weight xml parser -->
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-xml-io</artifactId>
-        </dependency>
-
         <!-- logging -->
         <dependency>
             <groupId>org.apache.logging.log4j</groupId>
             <artifactId>log4j-api</artifactId>
-            <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>ch.qos.logback</groupId>