-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathpom.xml
More file actions
91 lines (84 loc) · 2.76 KB
/
pom.xml
File metadata and controls
91 lines (84 loc) · 2.76 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?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>
<parent>
<groupId>org.ruby-lang</groupId>
<artifactId>prism-parser</artifactId>
<version>0.0.2-SNAPSHOT</version>
</parent>
<artifactId>prism-parser-wasm</artifactId>
<name>Java Prism WASM with semantic-only content</name>
<description>Java WASM bindings for the Prism parser shared library</description>
<url>https://github.com/ruby/prism</url>
<properties>
<chicory.version>1.7.5</chicory.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>bom</artifactId>
<version>${chicory.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.ruby-lang</groupId>
<artifactId>prism-parser-api</artifactId>
<version>0.0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>runtime</artifactId>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>log</artifactId>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>wasi</artifactId>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>wasm</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>10.0.4.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.dylibso.chicory</groupId>
<artifactId>chicory-compiler-maven-plugin</artifactId>
<version>${chicory.version}</version>
<executions>
<execution>
<id>prism</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<name>org.ruby_lang.prism.wasm.PrismParser</name>
<moduleInterface>org.ruby_lang.prism.wasm.Prism</moduleInterface>
<wasmFile>src/main/wasm/prism.wasm</wasmFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>