Skip to content

Commit

Permalink
Enable SSL for Azure extension apache#1269
Browse files Browse the repository at this point in the history
  • Loading branch information
galderz committed Jun 2, 2020
1 parent 6a8bc7a commit 9df3a29
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.camel.quarkus.component.azure.deployment;

import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.ExtensionSslNativeSupportBuildItem;
import io.quarkus.deployment.builditem.FeatureBuildItem;

class AzureProcessor {
Expand All @@ -27,4 +28,9 @@ class AzureProcessor {
FeatureBuildItem feature() {
return new FeatureBuildItem(FEATURE);
}

@BuildStep
ExtensionSslNativeSupportBuildItem activateSslNativeSupport() {
return new ExtensionSslNativeSupportBuildItem(FEATURE);
}
}

0 comments on commit 9df3a29

Please sign in to comment.