coolbeevip opened a new issue #260: camel-quarkus parent pom when already have 
a parent pom
URL: https://github.com/apache/camel-quarkus/issues/260
 
 
   I am a newcomer to Camel & Quarkus. I started a demo based on the user guide 
and there was a problem. 
   
   My demo already have a parent pom, so I add `camel-quarkus-bom` to the 
dependency management section with scope=import. But I have the following error 
message when mvn clean package
   
   demo pom.xml
   
   ```xml
   <?xml version="1.0"?>
   <project
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";
     xmlns="http://maven.apache.org/POM/4.0.0";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.coolbeevip</groupId>
     <artifactId>camel-quickstart</artifactId>
     <parent>
       <groupId>org.coolbeevip</groupId>
       <artifactId>quarkus-parent</artifactId>
       <version>1.0.0-SNAPSHOT</version>
   <!--    <groupId>org.apache.camel.quarkus</groupId>-->
   <!--    <artifactId>camel-quarkus-bom</artifactId>-->
   <!--    <version>0.2.0</version>-->
     </parent>
   
     <dependencyManagement>
       <dependencies>
         <dependency>
           <groupId>org.apache.camel.quarkus</groupId>
           <artifactId>camel-quarkus-bom</artifactId>
           <version>${camel-quarkus.version}</version>
           <type>pom</type>
           <scope>import</scope>
         </dependency>
       </dependencies>
     </dependencyManagement>
   
     <dependencies>
       <!-- quarkus -->
       <dependency>
         <groupId>io.quarkus</groupId>
         <artifactId>quarkus-resteasy</artifactId>
       </dependency>
   
       <!-- camel -->
       <dependency>
         <groupId>org.apache.camel.quarkus</groupId>
         <artifactId>camel-quarkus-servlet</artifactId>
       </dependency>
       <dependency>
         <groupId>org.apache.camel.quarkus</groupId>
         <artifactId>camel-quarkus-rest</artifactId>
       </dependency>
       <dependency>
         <groupId>org.apache.camel.quarkus</groupId>
         <artifactId>camel-quarkus-core-cloud</artifactId>
       </dependency>
   
       <!-- test -->
       <dependency>
         <groupId>io.quarkus</groupId>
         <artifactId>quarkus-junit5</artifactId>
         <scope>test</scope>
       </dependency>
       <dependency>
         <groupId>io.rest-assured</groupId>
         <artifactId>rest-assured</artifactId>
         <scope>test</scope>
       </dependency>
     </dependencies>
   </project>
   ```
   
   quarkus-parent pom.xml
   
   ```xml
   <?xml version="1.0"?>
   <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.coolbeevip</groupId>
     <artifactId>quarkus-parent</artifactId>
     <packaging>pom</packaging>
     <version>1.0.0-SNAPSHOT</version>
     <properties>
       
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
       <surefire-plugin.version>2.22.0</surefire-plugin.version>
       <quarkus.version>0.23.2</quarkus.version>
       <rxjava2.version>2.2.13</rxjava2.version>
       <camel-quarkus.version>0.2.0</camel-quarkus.version>
       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
       <maven.compiler.source>1.8</maven.compiler.source>
       <maven.compiler.target>1.8</maven.compiler.target>
     </properties>
     <dependencyManagement>
       <dependencies>
         <dependency>
           <groupId>io.quarkus</groupId>
           <artifactId>quarkus-bom</artifactId>
           <version>${quarkus.version}</version>
           <type>pom</type>
           <scope>import</scope>
         </dependency>
         <dependency>
           <groupId>io.reactivex.rxjava2</groupId>
           <artifactId>rxjava</artifactId>
           <version>${rxjava2.version}</version>
         </dependency>
       </dependencies>
     </dependencyManagement>
     <modules>
       <module>getting-started</module>
       <module>vertx-quickstart</module>
       <module>camel-quickstart</module>
     </modules>
     <build>
       <plugins>
         <plugin>
           <groupId>io.quarkus</groupId>
           <artifactId>quarkus-maven-plugin</artifactId>
           <version>${quarkus.version}</version>
           <executions>
             <execution>
               <goals>
                 <goal>build</goal>
               </goals>
             </execution>
           </executions>
         </plugin>
         <plugin>
           <artifactId>maven-surefire-plugin</artifactId>
           <version>${surefire-plugin.version}</version>
           <configuration>
             <systemProperties>
               
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
             </systemProperties>
           </configuration>
         </plugin>
       </plugins>
     </build>
     <profiles>
       <profile>
         <id>native</id>
         <activation>
           <property>
             <name>native</name>
           </property>
         </activation>
         <build>
           <plugins>
             <plugin>
               <groupId>io.quarkus</groupId>
               <artifactId>quarkus-maven-plugin</artifactId>
               <version>${quarkus.version}</version>
               <executions>
                 <execution>
                   <goals>
                     <goal>native-image</goal>
                   </goals>
                   <configuration>
                     <enableHttpUrlHandler>true</enableHttpUrlHandler>
                   </configuration>
                 </execution>
               </executions>
             </plugin>
             <plugin>
               <artifactId>maven-failsafe-plugin</artifactId>
               <version>${surefire-plugin.version}</version>
               <executions>
                 <execution>
                   <goals>
                     <goal>integration-test</goal>
                     <goal>verify</goal>
                   </goals>
                   <configuration>
                     <systemProperties>
                       
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
                     </systemProperties>
                   </configuration>
                 </execution>
               </executions>
             </plugin>
           </plugins>
         </build>
       </profile>
     </profiles>
   </project>
   ```
   
   build info
   
   ```
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  5.917 s
   [INFO] Finished at: 2019-10-11T18:00:44+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-surefire-plugin:2.22.0:test (default-test) on 
project camel-quickstart: There are test failures.
   [ERROR] 
   [ERROR] Please refer to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/surefire-reports 
for the individual test results.
   [ERROR] Please refer to dump files (if any exist) [date]-jvmRun[N].dump, 
[date].dumpstream and [date]-jvmRun[N].dumpstream.
   [ERROR] -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
   (base) bogon:camel-quickstart zhanglei$ 
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:02:58,059 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:02:58,987 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 928ms
   2019-10-11 18:02:59,733 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:02:59,733 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:02:59,743 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:02:59,754 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:02:59,755 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:02:59,755 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:02:59,755 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:02:59,755 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:02:59,761 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:02:59,763 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.029 seconds
   2019-10-11 18:02:59,765 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.777s. Listening on: http://[::]:8081
   2019-10-11 18:02:59,766 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:03:00,481 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:03:00,699 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:03:00,710 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.6 s 
- in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:03:00,734 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:03:00,740 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
1.007 seconds
   2019-10-11 18:03:00,741 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.006 seconds
   2019-10-11 18:03:00,741 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:03:00,742 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:03:00,742 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:03:00,747 INFO  [io.quarkus] (main) Quarkus stopped in 0.013s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-1.0.0-SNAPSHOT.jar
   [INFO] 
   [INFO] --- quarkus-maven-plugin:0.23.2:build (default) @ camel-quickstart ---
   [INFO] [io.quarkus.deployment.QuarkusAugmentor] Beginning quarkus 
augmentation
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  8.006 s
   [INFO] Finished at: 2019-10-11T18:03:02+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:0.23.2:build 
(default) on project camel-quickstart: Failed to build a runnable JAR: Failed 
to build a runner jar: Failed to augment application classes: public void 
io.quarkus.undertow.deployment.UndertowBuildStep.registerUndertowHandlersConf(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.builditem.ApplicationArchivesBuildItem,io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 is marked @Record but does not inject an @Recorder object -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   18:03:31,764 INFO  [io.qua.dep.QuarkusAugmentor] Beginning quarkus 
augmentation
   18:03:32,102 WARN  [io.qua.arc.dep.ArcTestRequestScopeProvider] Container 
not available, ignoring setup
   18:03:32,676 WARN  [io.qua.arc.dep.ArcTestRequestScopeProvider] Container 
not available, ignoring tearDown
   18:03:32,678 WARN  [io.qua.arc.dep.ArcTestRequestScopeProvider] Container 
not available, ignoring setup
   18:03:32,689 WARN  [io.qua.arc.dep.ArcTestRequestScopeProvider] Container 
not available, ignoring tearDown
   [ERROR] Tests run: 3, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 
2.017 s <<< FAILURE! - in org.coolbeevip.quarkus.camel.CamelServletTest
   [ERROR] multiplePaths  Time elapsed: 0.006 s  <<< ERROR!
   org.junit.jupiter.api.extension.TestInstantiationException: 
TestInstanceFactory [io.quarkus.test.junit.QuarkusTestExtension] failed to 
instantiate test class [org.coolbeevip.quarkus.camel.CamelServletTest]: void 
org.apache.camel.quarkus.component.servlet.deployment.ServletProcessor.build(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 throws java.io.IOException is marked @Record but does not inject an @Recorder 
object
   Caused by: java.lang.RuntimeException: void 
org.apache.camel.quarkus.component.servlet.deployment.ServletProcessor.build(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 throws java.io.IOException is marked @Record but does not inject an @Recorder 
object
   
   [ERROR] ignoredKey  Time elapsed: 0.579 s  <<< ERROR!
   java.net.ConnectException: Connection refused (Connection refused)
           at 
org.coolbeevip.quarkus.camel.CamelServletTest.ignoredKey(CamelServletTest.java:31)
   
   [ERROR] namedWithservletClass  Time elapsed: 0.012 s  <<< ERROR!
   java.net.ConnectException: Connection refused (Connection refused)
           at 
org.coolbeevip.quarkus.camel.CamelServletTest.namedWithservletClass(CamelServletTest.java:24)
   
   [INFO] 
   [INFO] Results:
   [INFO] 
   [ERROR] Errors: 
   [ERROR]   CamelServletTest.ignoredKey:31 » Connect Connection refused 
(Connection refuse...
   [ERROR]   CamelServletTest.multiplePaths » TestInstantiation 
TestInstanceFactory [io.qua...
   [ERROR]   CamelServletTest.namedWithservletClass:24 » Connect Connection 
refused (Connec...
   [INFO] 
   [ERROR] Tests run: 3, Failures: 0, Errors: 3, Skipped: 0
   [INFO] 
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  5.567 s
   [INFO] Finished at: 2019-10-11T18:03:33+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-surefire-plugin:2.22.0:test (default-test) on 
project camel-quickstart: There are test failures.
   [ERROR] 
   [ERROR] Please refer to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/surefire-reports 
for the individual test results.
   [ERROR] Please refer to dump files (if any exist) [date]-jvmRun[N].dump, 
[date].dumpstream and [date]-jvmRun[N].dumpstream.
   [ERROR] -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:04:17,211 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:04:18,064 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 853ms
   2019-10-11 18:04:18,628 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:04:18,629 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:04:18,637 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:04:18,647 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:04:18,648 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:04:18,648 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:04:18,648 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:04:18,649 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:04:18,653 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:04:18,654 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.025 seconds
   2019-10-11 18:04:18,656 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.591s. Listening on: http://[::]:8081
   2019-10-11 18:04:18,657 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:04:19,294 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:04:19,553 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:04:19,565 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.269 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:04:19,589 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:04:19,594 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
0.966 seconds
   2019-10-11 18:04:19,595 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.006 seconds
   2019-10-11 18:04:19,596 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:04:19,596 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:04:19,596 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:04:19,601 INFO  [io.quarkus] (main) Quarkus stopped in 0.013s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-1.0.0-SNAPSHOT.jar
   [INFO] 
   [INFO] --- quarkus-maven-plugin:0.23.2:build (default) @ camel-quickstart ---
   [INFO] [io.quarkus.deployment.QuarkusAugmentor] Beginning quarkus 
augmentation
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  7.873 s
   [INFO] Finished at: 2019-10-11T18:04:21+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:0.23.2:build 
(default) on project camel-quickstart: Failed to build a runnable JAR: Failed 
to build a runner jar: Failed to augment application classes: public void 
io.quarkus.undertow.deployment.UndertowBuildStep.registerUndertowHandlersConf(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.builditem.ApplicationArchivesBuildItem,io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 is marked @Record but does not inject an @Recorder object -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:04:49,855 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:04:50,709 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 854ms
   2019-10-11 18:04:51,277 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:04:51,278 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:04:51,286 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:04:51,295 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:04:51,297 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:04:51,297 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:04:51,297 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:04:51,297 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:04:51,300 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:04:51,302 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.024 seconds
   2019-10-11 18:04:51,304 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.593s. Listening on: http://[::]:8081
   2019-10-11 18:04:51,304 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:04:51,943 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:04:52,178 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:04:52,190 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.259 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:04:52,213 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:04:52,219 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
0.942 seconds
   2019-10-11 18:04:52,220 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.007 seconds
   2019-10-11 18:04:52,221 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:04:52,221 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:04:52,221 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:04:52,229 INFO  [io.quarkus] (main) Quarkus stopped in 0.016s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-1.0.0-SNAPSHOT.jar
   [INFO] 
   [INFO] --- quarkus-maven-plugin:0.23.2:build (default) @ camel-quickstart ---
   [INFO] [io.quarkus.deployment.QuarkusAugmentor] Beginning quarkus 
augmentation
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  7.739 s
   [INFO] Finished at: 2019-10-11T18:04:53+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:0.23.2:build 
(default) on project camel-quickstart: Failed to build a runnable JAR: Failed 
to build a runner jar: Failed to augment application classes: public void 
io.quarkus.undertow.deployment.UndertowBuildStep.registerUndertowHandlersConf(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.builditem.ApplicationArchivesBuildItem,io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 is marked @Record but does not inject an @Recorder object -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   (base) bogon:camel-quickstart zhanglei$ mvn clean test
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:05:10,707 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:05:11,554 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 847ms
   2019-10-11 18:05:12,136 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:05:12,137 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:05:12,146 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:05:12,156 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:05:12,158 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:05:12,158 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:05:12,158 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:05:12,158 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:05:12,162 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:05:12,163 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.026 seconds
   2019-10-11 18:05:12,165 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.609s. Listening on: http://[::]:8081
   2019-10-11 18:05:12,165 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:05:12,800 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:05:13,030 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:05:13,041 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.27 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:05:13,062 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:05:13,068 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
0.931 seconds
   2019-10-11 18:05:13,068 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.006 seconds
   2019-10-11 18:05:13,069 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:05:13,069 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:05:13,070 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:05:13,076 INFO  [io.quarkus] (main) Quarkus stopped in 0.014s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  6.821 s
   [INFO] Finished at: 2019-10-11T18:05:13+08:00
   [INFO] 
------------------------------------------------------------------------
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:10:57,509 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:10:58,360 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 851ms
   2019-10-11 18:10:58,940 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:10:58,940 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:10:58,949 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:10:58,961 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:10:58,962 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:10:58,963 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:10:58,963 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:10:58,963 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:10:58,967 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:10:58,968 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.027 seconds
   2019-10-11 18:10:58,970 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.608s. Listening on: http://[::]:8081
   2019-10-11 18:10:58,971 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:10:59,664 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:10:59,897 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:10:59,919 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.341 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:10:59,944 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:10:59,950 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
1.010 seconds
   2019-10-11 18:10:59,951 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.006 seconds
   2019-10-11 18:10:59,951 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:10:59,952 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:10:59,952 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:10:59,957 INFO  [io.quarkus] (main) Quarkus stopped in 0.014s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-1.0.0-SNAPSHOT.jar
   [INFO] 
   [INFO] --- quarkus-maven-plugin:0.23.2:build (default) @ camel-quickstart ---
   [INFO] [io.quarkus.deployment.QuarkusAugmentor] Beginning quarkus 
augmentation
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  8.114 s
   [INFO] Finished at: 2019-10-11T18:11:01+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:0.23.2:build 
(default) on project camel-quickstart: Failed to build a runnable JAR: Failed 
to build a runner jar: Failed to augment application classes: public void 
io.quarkus.undertow.deployment.UndertowBuildStep.registerUndertowHandlersConf(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.builditem.ApplicationArchivesBuildItem,io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 is marked @Record but does not inject an @Recorder object -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [WARNING] 
   [WARNING] Some problems were encountered while building the effective model 
for org.coolbeevip:camel-quickstart:jar:0.2.0
   [WARNING] 'parent.relativePath' of POM 
org.coolbeevip:camel-quickstart:[unknown-version] 
(/Users/zhanglei/github/quarkus-labs/camel-quickstart/pom.xml) points at 
org.coolbeevip:quarkus-parent instead of 
org.apache.camel.quarkus:camel-quarkus-bom, please verify your project 
structure @ org.coolbeevip:camel-quickstart:[unknown-version], 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/pom.xml, line 11, column 11
   [WARNING] 
   [WARNING] It is highly recommended to fix these problems because they 
threaten the stability of your build.
   [WARNING] 
   [WARNING] For this reason, future Maven versions might no longer support 
building such malformed projects.
   [WARNING] 
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 0.2.0
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce 
(camel-quarkus-enforcer-rules) @ camel-quickstart ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ 
camel-quickstart ---
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.5:process 
(process-resource-bundles) @ camel-quickstart ---
   [INFO] 
   [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:3.1.0:testResources 
(default-testResources) @ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:15:28,769 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:15:29,823 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 1054ms
   2019-10-11 18:15:30,594 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:15:30,595 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:15:30,605 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:15:30,616 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:15:30,618 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:15:30,618 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:15:30,618 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:15:30,619 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:15:30,623 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:15:30,625 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.030 seconds
   2019-10-11 18:15:30,627 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.801s. Listening on: http://[::]:8081
   2019-10-11 18:15:30,627 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:15:31,403 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:15:31,667 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:15:31,678 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.012 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:15:31,708 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:15:31,716 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
1.122 seconds
   2019-10-11 18:15:31,716 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.008 seconds
   2019-10-11 18:15:31,717 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:15:31,718 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:15:31,718 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:15:31,722 INFO  [io.quarkus] (main) Quarkus stopped in 0.016s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:3.1.0:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-0.2.0.jar
   [INFO] 
   [INFO] --- maven-site-plugin:3.7.1:attach-descriptor (attach-descriptor) @ 
camel-quickstart ---
   [INFO] Skipping because packaging 'jar' is not pom.
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  12.921 s
   [INFO] Finished at: 2019-10-11T18:15:32+08:00
   [INFO] 
------------------------------------------------------------------------
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building Camel Quarkus :: Examples :: Rest Json 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:20:40,682 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:20:41,582 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 900ms
   2019-10-11 18:20:42,210 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:20:42,211 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:20:42,220 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:20:42,230 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:20:42,231 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:20:42,231 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:20:42,232 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:20:42,232 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:20:42,238 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:20:42,239 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.028 seconds
   2019-10-11 18:20:42,241 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.656s. Listening on: http://[::]:8081
   2019-10-11 18:20:42,241 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:20:42,955 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:20:43,218 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:20:43,232 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.53 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:20:43,257 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:20:43,264 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
1.054 seconds
   2019-10-11 18:20:43,264 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.007 seconds
   2019-10-11 18:20:43,265 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:20:43,266 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:20:43,266 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:20:43,272 INFO  [io.quarkus] (main) Quarkus stopped in 0.015s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-1.0.0-SNAPSHOT.jar
   [INFO] 
   [INFO] --- quarkus-maven-plugin:0.23.2:build (default) @ camel-quickstart ---
   [INFO] [io.quarkus.deployment.QuarkusAugmentor] Beginning quarkus 
augmentation
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  8.756 s
   [INFO] Finished at: 2019-10-11T18:20:44+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:0.23.2:build 
(default) on project camel-quickstart: Failed to build a runnable JAR: Failed 
to build a runner jar: Failed to augment application classes: public void 
io.quarkus.undertow.deployment.UndertowBuildStep.registerUndertowHandlersConf(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.builditem.ApplicationArchivesBuildItem,io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 is marked @Record but does not inject an @Recorder object -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [WARNING] 
   [WARNING] Some problems were encountered while building the effective model 
for org.coolbeevip:camel-quickstart:jar:0.2.0
   [WARNING] 'parent.relativePath' of POM 
org.coolbeevip:camel-quickstart:[unknown-version] 
(/Users/zhanglei/github/quarkus-labs/camel-quickstart/pom.xml) points at 
org.coolbeevip:quarkus-parent instead of 
org.apache.camel.quarkus:camel-quarkus-bom, please verify your project 
structure @ org.coolbeevip:camel-quickstart:[unknown-version], 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/pom.xml, line 9, column 11
   [WARNING] 
   [WARNING] It is highly recommended to fix these problems because they 
threaten the stability of your build.
   [WARNING] 
   [WARNING] For this reason, future Maven versions might no longer support 
building such malformed projects.
   [WARNING] 
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building camel-quickstart 0.2.0
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce 
(camel-quarkus-enforcer-rules) @ camel-quickstart ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ 
camel-quickstart ---
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.5:process 
(process-resource-bundles) @ camel-quickstart ---
   [INFO] 
   [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:3.1.0:testResources 
(default-testResources) @ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:22:57,187 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:22:58,094 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 907ms
   2019-10-11 18:22:58,694 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:22:58,694 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:22:58,706 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:22:58,715 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:22:58,717 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:22:58,717 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:22:58,717 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:22:58,717 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:22:58,722 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:22:58,724 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.028 seconds
   2019-10-11 18:22:58,725 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.629s. Listening on: http://[::]:8081
   2019-10-11 18:22:58,725 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:22:59,388 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:22:59,622 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:22:59,634 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.365 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:22:59,656 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:22:59,661 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
0.967 seconds
   2019-10-11 18:22:59,661 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.005 seconds
   2019-10-11 18:22:59,662 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:22:59,663 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:22:59,663 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:22:59,667 INFO  [io.quarkus] (main) Quarkus stopped in 0.011s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:3.1.0:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-0.2.0.jar
   [INFO] 
   [INFO] --- maven-site-plugin:3.7.1:attach-descriptor (attach-descriptor) @ 
camel-quickstart ---
   [INFO] Skipping because packaging 'jar' is not pom.
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  11.687 s
   [INFO] Finished at: 2019-10-11T18:23:00+08:00
   [INFO] 
------------------------------------------------------------------------
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [WARNING] 
   [WARNING] Some problems were encountered while building the effective model 
for org.coolbeevip:camel-quickstart:jar:0.2.0
   [WARNING] 'parent.relativePath' of POM 
org.coolbeevip:camel-quickstart:[unknown-version] 
(/Users/zhanglei/github/quarkus-labs/camel-quickstart/pom.xml) points at 
org.coolbeevip:quarkus-parent instead of 
org.apache.camel.quarkus:camel-quarkus-bom, please verify your project 
structure @ org.coolbeevip:camel-quickstart:[unknown-version], 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/pom.xml, line 9, column 11
   [WARNING] 
   [WARNING] It is highly recommended to fix these problems because they 
threaten the stability of your build.
   [WARNING] 
   [WARNING] For this reason, future Maven versions might no longer support 
building such malformed projects.
   [WARNING] 
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building camel-quickstart 0.2.0
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce 
(camel-quarkus-enforcer-rules) @ camel-quickstart ---
   [INFO] 
   [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven-version) @ 
camel-quickstart ---
   [INFO] 
   [INFO] --- maven-remote-resources-plugin:1.5:process 
(process-resource-bundles) @ camel-quickstart ---
   [INFO] 
   [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:3.1.0:testResources 
(default-testResources) @ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] Copying 3 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.8.0:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:23:25,359 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:23:26,235 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 876ms
   2019-10-11 18:23:26,860 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:23:26,861 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:23:26,870 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:23:26,880 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:23:26,882 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:23:26,882 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:23:26,883 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:23:26,883 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:23:26,888 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:23:26,890 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.028 seconds
   2019-10-11 18:23:26,893 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.656s. Listening on: http://[::]:8081
   2019-10-11 18:23:26,894 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:23:27,597 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:23:27,856 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:23:27,870 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.445 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:23:27,899 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:23:27,905 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
1.045 seconds
   2019-10-11 18:23:27,905 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.006 seconds
   2019-10-11 18:23:27,906 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:23:27,906 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:23:27,906 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:23:27,912 INFO  [io.quarkus] (main) Quarkus stopped in 0.014s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:3.1.0:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-0.2.0.jar
   [INFO] 
   [INFO] --- maven-site-plugin:3.7.1:attach-descriptor (attach-descriptor) @ 
camel-quickstart ---
   [INFO] Skipping because packaging 'jar' is not pom.
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  11.703 s
   [INFO] Finished at: 2019-10-11T18:23:28+08:00
   [INFO] 
------------------------------------------------------------------------
   (base) bogon:camel-quickstart zhanglei$ mvn clean test
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building camel-quickstart 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:25:56,622 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:25:57,476 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 854ms
   2019-10-11 18:25:58,034 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:25:58,035 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:25:58,043 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:25:58,052 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:25:58,053 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:25:58,053 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:25:58,053 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:25:58,053 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:25:58,057 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:25:58,058 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.023 seconds
   2019-10-11 18:25:58,061 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.583s. Listening on: http://[::]:8081
   2019-10-11 18:25:58,061 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:25:58,683 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:25:58,923 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:25:58,934 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.237 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:25:58,956 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:25:58,961 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
0.926 seconds
   2019-10-11 18:25:58,961 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.005 seconds
   2019-10-11 18:25:58,962 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:25:58,962 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:25:58,962 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:25:58,966 INFO  [io.quarkus] (main) Quarkus stopped in 0.011s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  6.896 s
   [INFO] Finished at: 2019-10-11T18:25:59+08:00
   [INFO] 
------------------------------------------------------------------------
   (base) bogon:camel-quickstart zhanglei$ mvn clean package
   [INFO] Scanning for projects...
   [INFO] 
   [INFO] ------------------< org.coolbeevip:camel-quickstart 
>-------------------
   [INFO] Building camel-quickstart 1.0.0-SNAPSHOT
   [INFO] --------------------------------[ jar 
]---------------------------------
   [INFO] 
   [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ camel-quickstart 
---
   [INFO] Deleting /Users/zhanglei/github/quarkus-labs/camel-quickstart/target
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ 
camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] Copying 4 resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/classes
   [INFO] 
   [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) 
@ camel-quickstart ---
   [INFO] Using 'UTF-8' encoding to copy filtered resources.
   [INFO] skip non existing resourceDirectory 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/src/test/resources
   [INFO] 
   [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ 
camel-quickstart ---
   [INFO] Changes detected - recompiling the module!
   [INFO] Compiling 2 source files to 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/test-classes
   [INFO] 
   [INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ 
camel-quickstart ---
   [INFO] 
   [INFO] -------------------------------------------------------
   [INFO]  T E S T S
   [INFO] -------------------------------------------------------
   [INFO] Running org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:28:39,717 INFO  [io.qua.dep.QuarkusAugmentor] (main) Beginning 
quarkus augmentation
   2019-10-11 18:28:40,622 INFO  [io.qua.dep.QuarkusAugmentor] (main) Quarkus 
augmentation completed in 905ms
   2019-10-11 18:28:41,256 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is starting
   2019-10-11 18:28:41,256 INFO  
[org.apa.cam.imp.eng.DefaultManagementStrategy] (main) JMX is disabled
   2019-10-11 18:28:41,264 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) StreamCaching is not in use. If using streams then its recommended to 
enable stream caching. See more details at 
http://camel.apache.org/stream-caching.html
   2019-10-11 18:28:41,272 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route1 started and consuming from: 
servlet:/hello?matchOnUriPrefix=true
   2019-10-11 18:28:41,273 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route2 started and consuming from: 
servlet:/custom?servletName=my-named-servlet
   2019-10-11 18:28:41,273 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route3 started and consuming from: 
servlet:/favorite?servletName=my-favorite-servlet
   2019-10-11 18:28:41,274 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route4 started and consuming from: 
servlet:/rest-get?httpMethodRestrict=GET
   2019-10-11 18:28:41,274 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Route: route5 started and consuming from: 
servlet:/rest-post?httpMethodRestrict=POST
   2019-10-11 18:28:41,277 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Total 5 routes, of which 5 are started
   2019-10-11 18:28:41,278 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) started in 
0.021 seconds
   2019-10-11 18:28:41,282 INFO  [io.quarkus] (main) Quarkus 0.22.0 started in 
0.657s. Listening on: http://[::]:8081
   2019-10-11 18:28:41,282 INFO  [io.quarkus] (main) Installed features: 
[camel-core, camel-rest, camel-servlet, cdi, resteasy]
   2019-10-11 18:28:41,990 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=CamelServlet, contextPath=]
   2019-10-11 18:28:42,246 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-favorite-servlet, contextPath=]
   2019-10-11 18:28:42,259 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (executor-thread-1) Initialized 
CamelHttpTransportServlet[name=my-named-servlet, contextPath=]
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.559 
s - in org.coolbeevip.quarkus.camel.CamelServletTest
   2019-10-11 18:28:42,283 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutting 
down
   2019-10-11 18:28:42,290 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) uptime 
1.034 seconds
   2019-10-11 18:28:42,290 INFO  [org.apa.cam.qua.cor.run.sup.FastCamelContext] 
(main) Apache Camel 3.0.0-RC1 (CamelContext: quarkus-camel-example) is shutdown 
in 0.007 seconds
   2019-10-11 18:28:42,291 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-favorite-servlet]
   2019-10-11 18:28:42,292 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[my-named-servlet]
   2019-10-11 18:28:42,292 INFO  
[org.apa.cam.com.ser.CamelHttpTransportServlet] (main) Destroyed 
CamelHttpTransportServlet[CamelServlet]
   2019-10-11 18:28:42,299 INFO  [io.quarkus] (main) Quarkus stopped in 0.016s
   [INFO] 
   [INFO] Results:
   [INFO] 
   [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0
   [INFO] 
   [INFO] 
   [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ camel-quickstart ---
   [INFO] Building jar: 
/Users/zhanglei/github/quarkus-labs/camel-quickstart/target/camel-quickstart-1.0.0-SNAPSHOT.jar
   [INFO] 
   [INFO] --- quarkus-maven-plugin:0.23.2:build (default) @ camel-quickstart ---
   [INFO] [io.quarkus.deployment.QuarkusAugmentor] Beginning quarkus 
augmentation
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD FAILURE
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  8.453 s
   [INFO] Finished at: 2019-10-11T18:28:43+08:00
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Failed to execute goal io.quarkus:quarkus-maven-plugin:0.23.2:build 
(default) on project camel-quickstart: Failed to build a runnable JAR: Failed 
to build a runner jar: Failed to augment application classes: public void 
io.quarkus.undertow.deployment.UndertowBuildStep.registerUndertowHandlersConf(io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.builditem.ApplicationArchivesBuildItem,io.quarkus.deployment.annotations.BuildProducer,io.quarkus.deployment.annotations.BuildProducer)
 is marked @Record but does not inject an @Recorder object -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
   (base) bogon:camel-quickstart zhanglei$ 
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to