December 2019
Intermediate to advanced
314 pages
6h 51m
English
Now, it's time to check what Quarkus can do to turn our bytecode into a native executable. This kind of magic is done under the hood by a Maven profile named native, which is included out of the box when you scaffold your application:
<profile> <id>native</id> <activation> <property> <name>native</name> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>${surefire-plugin.version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <configuration> <systemProperties> <native.image.path>${project.build.directory} /${project.build.finalName}-runner </native.image.path> </systemProperties> ...
Read now
Unlock full access