mirror of
https://github.com/schmaeddes/untitledTextAdventure.git
synced 2024-11-14 18:28:03 +01:00
37 lines
No EOL
1.3 KiB
XML
37 lines
No EOL
1.3 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>
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
</properties>
|
|
|
|
<groupId>schmaeddes</groupId>
|
|
<artifactId>untitledTextAdventure</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.graalvm.js/js -->
|
|
<dependency>
|
|
<groupId>org.graalvm.js</groupId>
|
|
<artifactId>js</artifactId>
|
|
<version>22.2.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.graalvm.js/js-scriptengine -->
|
|
<dependency>
|
|
<groupId>org.graalvm.js</groupId>
|
|
<artifactId>js-scriptengine</artifactId>
|
|
<version>22.2.0</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.graalvm.truffle/truffle-api -->
|
|
<dependency>
|
|
<groupId>org.graalvm.truffle</groupId>
|
|
<artifactId>truffle-api</artifactId>
|
|
<version>22.2.0</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
</project> |