helidon-graal-native-image-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.helidon.integrations.graal</groupId> <artifactId>helidon-graal-native-image-extension</artifactId> <version>4.2.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2019, 2025 Oracle and/or its affiliates. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <groupId>io.helidon.integrations.graal</groupId> <artifactId>helidon-integrations-graal-project</artifactId> <version>4.2.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>helidon-graal-native-image-extension</artifactId> <name>Helidon Integrations Graal Native Image Extension</name> <properties> <!-- To build javadocs we need to have a valid module-info file. But org.graalvm.nativeimage:svm appears to have a bad module-info. So for now we skip generating javadocs. --> <maven.javadoc.skip>true</maven.javadoc.skip> </properties> <dependencies> <dependency> <groupId>io.helidon.logging</groupId> <artifactId>helidon-logging-common</artifactId> </dependency> <dependency> <groupId>io.helidon.config</groupId> <artifactId>helidon-config-mp</artifactId> </dependency> <dependency> <groupId>io.helidon.common.features</groupId> <artifactId>helidon-common-features</artifactId> </dependency> <dependency> <groupId>io.helidon.service</groupId> <artifactId>helidon-service-registry</artifactId> </dependency> <dependency> <groupId>org.eclipse.parsson</groupId> <artifactId>parsson</artifactId> </dependency> <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> </dependency> <dependency> <groupId>org.graalvm.sdk</groupId> <artifactId>nativeimage</artifactId> <scope>provided</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${project.build.directory}/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>