Skip to content

Commit

Permalink
Upgrade to Quarkus 1.5.0 (WiP)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed May 14, 2020
1 parent dd7136a commit abf93e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.FeatureBuildItem;
import io.quarkus.mongodb.deployment.MongoClientBuildItem;
import io.quarkus.mongodb.runtime.MongoClientRecorder;
import io.quarkus.mongodb.runtime.MongoClientBeanUtil;
import org.apache.camel.quarkus.core.deployment.spi.CamelRuntimeBeanBuildItem;

class MongoDbProcessor {
Expand All @@ -43,7 +43,7 @@ void registerCamelMongoClientProducer(
for (MongoClientBuildItem mongoClient : mongoClients) {
// If there is a default mongo client instance, then bind it to the camel registry
// with the default mongo client name used by the camel-mongodb component
if (MongoClientRecorder.DEFAULT_MONGOCLIENT_NAME.equals(mongoClient.getName())) {
if (MongoClientBeanUtil.isDefault(mongoClient.getName())) {
runtimeBeans.produce(
new CamelRuntimeBeanBuildItem(
"camelMongoClient",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<jetty.version>9.4.18.v20190429</jetty.version>
<kotlin.version>1.3.72</kotlin.version>
<kubernetes-client.version>4.9.0</kubernetes-client.version>
<quarkus.version>1.4.2.Final</quarkus.version>
<quarkus.version>999-SNAPSHOT</quarkus.version>
<quarkus-qpid-jms.version>0.14.1</quarkus-qpid-jms.version>
<protobuf.version>3.11.1</protobuf.version>
<retrofit.version>2.5.0</retrofit.version>
Expand Down

0 comments on commit abf93e1

Please sign in to comment.