You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/04/07 16:48:43 UTC

[GitHub] [camel-quarkus] lburgazzoli commented on a change in pull request #1050: InfluxDB native support #1036

lburgazzoli commented on a change in pull request #1050: InfluxDB native support #1036
URL: https://github.com/apache/camel-quarkus/pull/1050#discussion_r404959865
 
 

 ##########
 File path: extensions/influxdb/deployment/src/main/java/org/apache/camel/quarkus/component/influxdb/deployment/InfluxdbProcessor.java
 ##########
 @@ -16,32 +16,27 @@
  */
 package org.apache.camel.quarkus.component.influxdb.deployment;
 
+import io.quarkus.deployment.annotations.BuildProducer;
 import io.quarkus.deployment.annotations.BuildStep;
-import io.quarkus.deployment.annotations.ExecutionTime;
-import io.quarkus.deployment.annotations.Record;
+import io.quarkus.deployment.builditem.ExtensionSslNativeSupportBuildItem;
 import io.quarkus.deployment.builditem.FeatureBuildItem;
-import io.quarkus.deployment.pkg.steps.NativeBuild;
-import org.apache.camel.quarkus.core.JvmOnlyRecorder;
-import org.jboss.logging.Logger;
+import io.quarkus.deployment.builditem.nativeimage.NativeImageProxyDefinitionBuildItem;
 
 class InfluxdbProcessor {
-    private static final Logger LOG = Logger.getLogger(InfluxdbProcessor.class);
 
     private static final String FEATURE = "camel-influxdb";
 
     @BuildStep
-    FeatureBuildItem feature() {
+    FeatureBuildItem feature(BuildProducer<ExtensionSslNativeSupportBuildItem> extensionSslNativeSupport) {
+
+        // Indicates that this extension would like the SSL support to be enabled
+        extensionSslNativeSupport.produce(new ExtensionSslNativeSupportBuildItem(FEATURE));
+
 
 Review comment:
   I'm not so strict, you have some freedom :)

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services