polyglot-adapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.ih0r-d</groupId>
<artifactId>polyglot-adapter</artifactId>
<version>0.4.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.ih0r-d</groupId>
<artifactId>polyglot-adapter</artifactId>
<version>0.4.0</version>
<name>polyglot-adapter-core</name>
<description>Core library for executing polyglot code via GraalVM</description>
<url>https://github.com/ih0r-d/polyglot-platform/polyglot-adapter-parent/polyglot-adapter</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>ih0rd</id>
<name>Ihor Didyk</name>
<url>https://github.com/ih0r-d</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/ih0r-d/polyglot-platform.git/polyglot-adapter-parent/polyglot-adapter</connection>
<developerConnection>scm:git:ssh://github.com:ih0r-d/polyglot-platform.git/polyglot-adapter-parent/polyglot-adapter</developerConnection>
<url>https://github.com/ih0r-d/polyglot-platform/polyglot-adapter-parent/polyglot-adapter</url>
</scm>
<dependencies>
<dependency>
<groupId>io.github.ih0r-d</groupId>
<artifactId>polyglot-model</artifactId>
<version>0.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.ih0r-d</groupId>
<artifactId>polyglot-annotations</artifactId>
<version>0.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
<version>25.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
<version>25.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.graalvm.python</groupId>
<artifactId>python-launcher</artifactId>
<version>25.0.2</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.graalvm.python</groupId>
<artifactId>python-embedding</artifactId>
<version>25.0.2</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>25.0.2</version>
<type>pom</type>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk18on</artifactId>
<version>1.84</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>