-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
54 lines (54 loc) · 2.05 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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.yona-lang</groupId>
<artifactId>yona-parent</artifactId>
<version>0.8.4-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<m2e.apt.activation>jdt_apt</m2e.apt.activation>
<graalvm.version>22.0.0</graalvm.version>
<junit.version>5.8.2</junit.version>
<junit.platform.version>1.8.2</junit.platform.version>
<antlr.version>4.9.3</antlr.version>
<commons.lang.version>3.12.0</commons.lang.version>
<jline.version>3.21.0</jline.version>
<hamcrest.version>2.2</hamcrest.version>
<antlr4.junit.autocomplete.version>0.0.1-SNAPSHOT</antlr4.junit.autocomplete.version>
<jna.version>5.11.0</jna.version>
<argparse4j.version>0.9.0</argparse4j.version>
</properties>
<packaging>pom</packaging>
<modules>
<module>parser</module>
<module>language</module>
<module>launcher</module>
<module>native</module>
<module>component</module>
</modules>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/
</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>github</id>
<name>antlr4-autocomplete repo</name>
<url>https://maven.pkg.github.com/akovari/antlr4-autocomplete</url>
</repository>
</repositories>
</project>