Skip to content

Commit

Permalink
Amend amel-k-runtime-example-quarkus-yaml to show how to configure qu…
Browse files Browse the repository at this point in the history
…arkus through runtime properties
  • Loading branch information
lburgazzoli committed Mar 12, 2020
1 parent ba9a261 commit efb7df4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
## limitations under the License.
## ---------------------------------------------------------------------------

#
# Quarkus
#
quarkus.http.port = 9988

#
# camel - main
#
Expand All @@ -26,3 +31,4 @@ camel.main.stream-caching-spool-directory = ${java.io.tmpdir}/camel-q
# Integration
#
message = test-app

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
id: "flow-1"
group: "routes"
from:
uri: "netty-http:localhost:8080"
uri: "platform-http://hello"
steps:
- convert-body:
type: "java.lang.String"
Expand Down
7 changes: 6 additions & 1 deletion examples/camel-k-runtime-example-quarkus-yaml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-netty-http</artifactId>
<artifactId>camel-quarkus-platform-http</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
Expand All @@ -83,6 +83,11 @@
<artifactId>quarkus-vertx-core</artifactId>
<version>${quarkus.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-vertx-http</artifactId>
<version>${quarkus.version}</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit efb7df4

Please sign in to comment.