Skip to content

Commit

Permalink
Enable SSL for Azure extension #1269
Browse files Browse the repository at this point in the history
  • Loading branch information
galderz authored and jamesnetherton committed Jun 3, 2020
1 parent f74227d commit 8c4d478
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 8c4d478

Please sign in to comment.