mirror of
https://codeberg.org/ProgramSnail/truffle-lama.git
synced 2025-12-05 22:38:43 +00:00
92 lines
No EOL
3.4 KiB
XML
92 lines
No EOL
3.4 KiB
XML
<?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.programsnail</groupId>
|
|
<artifactId>truffle-lama-from-scratch</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<graalvm.version>23.1.0</graalvm.version>
|
|
<antlr.version>4.12.0</antlr.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.1.2</version>
|
|
<configuration>
|
|
<argLine>
|
|
--add-exports=java.base/jdk.internal.module=truffle.tck
|
|
</argLine>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.14.0</version>
|
|
<configuration>
|
|
<source>21</source>
|
|
<target>21</target>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.graalvm.truffle</groupId>
|
|
<artifactId>truffle-dsl-processor</artifactId>
|
|
<version>${graalvm.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
<excludes>
|
|
<exclude>parser/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<finalName>truffle-lama-from-scratch</finalName>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.graalvm.polyglot</groupId>
|
|
<artifactId>polyglot</artifactId>
|
|
<version>${graalvm.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.truffle</groupId>
|
|
<artifactId>truffle-api</artifactId>
|
|
<version>${graalvm.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.truffle</groupId>
|
|
<artifactId>truffle-runtime</artifactId>
|
|
<version>${graalvm.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.graalvm.truffle</groupId>
|
|
<artifactId>truffle-tck</artifactId>
|
|
<version>${graalvm.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
<version>${antlr.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |