Skip to content

Commit

Permalink
apache#2726 revert unintentional changes for this issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ffang committed Jun 15, 2021
1 parent f934589 commit 5b0d54f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 25 deletions.
Expand Up @@ -43,7 +43,6 @@
import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem;
import io.quarkus.deployment.builditem.nativeimage.ReflectiveHierarchyBuildItem;
import io.quarkus.deployment.builditem.nativeimage.ReflectiveHierarchyIgnoreWarningBuildItem;
import io.quarkus.deployment.builditem.nativeimage.RuntimeInitializedClassBuildItem;
import org.apache.camel.tooling.model.MainModel;
import org.jboss.jandex.DotName;
import org.jboss.jandex.Type;
Expand All @@ -52,10 +51,6 @@ class HazelcastProcessor {

private static final String FEATURE = "camel-hazelcast";

private static final String[] RUNTIME_INITIALIZED_CLASSES = new String[] {
"com.hazelcast.internal.util.ICMPHelper"
};

@BuildStep
FeatureBuildItem feature() {
return new FeatureBuildItem(FEATURE);
Expand All @@ -66,13 +61,6 @@ ExtensionSslNativeSupportBuildItem activateSslNativeSupport() {
return new ExtensionSslNativeSupportBuildItem(FEATURE);
}

@BuildStep
void configureRuntimeInitializedClasses(BuildProducer<RuntimeInitializedClassBuildItem> runtimeInitializedClass) {
for (String className : RUNTIME_INITIALIZED_CLASSES) {
runtimeInitializedClass.produce(new RuntimeInitializedClassBuildItem(className));
}
}

@BuildStep
List<ReflectiveClassBuildItem> registerReflectiveClasses() {
List<ReflectiveClassBuildItem> items = new ArrayList<ReflectiveClassBuildItem>();
Expand Down
13 changes: 0 additions & 13 deletions integration-tests/hazelcast/pom.xml
Expand Up @@ -134,18 +134,5 @@
</plugins>
</build>
</profile>
<profile>
<id>hazelcast-mac</id>
<activation>
<os><family>mac</family></os>
</activation>
<dependencies>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>affinity</artifactId>
<version>3.20.0</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

0 comments on commit 5b0d54f

Please sign in to comment.