File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
src/graalvm/java/com/rabbitmq/perf Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,13 @@ binary: clean ## Build the binary distribution
2626.PHONY : native-image
2727native-image : clean # # Build the native image
2828 @mvnw -q package -DskipTests -P native-image -P ' !java-packaging'
29- native-image -jar target/perf-test.jar -H:Features=" com.rabbitmq.perf.NativeImageFeature"
29+ native-image -jar target/perf-test.jar -H:Features=" com.rabbitmq.perf.NativeImageFeature" \
30+ --initialize-at-build-time=io.micrometer \
31+ --initialize-at-build-time=com.rabbitmq.client \
32+ --initialize-at-build-time=org.eclipse.jetty \
33+ --initialize-at-build-time=javax.servlet \
34+ --initialize-at-build-time=org.slf4j \
35+ --no-fallback
3036
3137.PHONY : docker-image-dev
3238docker-image-dev : # # Build Docker image with the local PerfTest version
Original file line number Diff line number Diff line change 1818import org .HdrHistogram .ConcurrentHistogram ;
1919import org .HdrHistogram .DoubleRecorder ;
2020import org .HdrHistogram .Histogram ;
21- import org .graalvm .nativeimage .Feature ;
22- import org .graalvm .nativeimage .RuntimeReflection ;
21+ import org .graalvm .nativeimage .hosted . Feature ;
22+ import org .graalvm .nativeimage .hosted . RuntimeReflection ;
2323import org .slf4j .impl .StaticLoggerBinder ;
2424
2525/**
You can’t perform that action at this time.
0 commit comments