compiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.graalvm.compiler</groupId> <artifactId>compiler</artifactId> <version>25.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.graalvm.compiler</groupId> <artifactId>compiler</artifactId> <version>25.0.0</version> <url>http://www.graalvm.org/</url> <name>Graal</name> <description>The JAR build of the Graal compiler. This is intended to be used to speed up Graal Languages on OpenJDK distributions that do not ship the Graal compiler. To enable it, '-XX:+EnableJVMCI' is required and this Graal compiler JAR and its dependencies need to be on the '--upgrade-module-path'.</description> <developers> <developer> <name>GraalVM Development</name> <email>graalvm-dev@oss.oracle.com</email> <organization>Oracle Corporation</organization> <organizationUrl>http://www.graalvm.org/</organizationUrl> </developer> </developers> <licenses> <license> <name>GNU General Public License, version 2, with the Classpath Exception</name> <url>http://openjdk.java.net/legal/gplv2+ce.html</url> </license> </licenses> <dependencies> <dependency> <groupId>org.graalvm.sdk</groupId> <artifactId>collections</artifactId> <version>25.0.0</version> </dependency> <dependency> <groupId>org.graalvm.sdk</groupId> <artifactId>word</artifactId> <version>25.0.0</version> </dependency> <dependency> <groupId>org.graalvm.truffle</groupId> <artifactId>truffle-compiler</artifactId> <version>25.0.0</version> </dependency> </dependencies> <scm> <connection>scm:git:https://github.com/oracle/graal.git</connection> <developerConnection>scm:git:git@github.com:oracle/graal.git</developerConnection> <url>https://github.com/oracle/graal</url> </scm> </project>