Skip to content

Commit 46e7921

Browse files
authored
Merge pull request #3655 from andreaTP/update-chicory-1.5.1
2 parents 90a098d + 01c6064 commit 46e7921

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

java-wasm/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<maven.compiler.source>11</maven.compiler.source>
1616
<maven.compiler.target>11</maven.compiler.target>
1717

18-
<chicory.version>1.3.0</chicory.version>
18+
<chicory.version>1.5.1</chicory.version>
1919
<junit.version>5.13.4</junit.version>
2020
</properties>
2121

@@ -56,7 +56,7 @@
5656
</dependency>
5757
<dependency>
5858
<groupId>com.dylibso.chicory</groupId>
59-
<artifactId>host-module-annotations-experimental</artifactId>
59+
<artifactId>annotations</artifactId>
6060
<scope>provided</scope>
6161
</dependency>
6262
</dependencies>
@@ -85,7 +85,7 @@
8585
<annotationProcessorPaths>
8686
<path>
8787
<groupId>com.dylibso.chicory</groupId>
88-
<artifactId>host-module-processor-experimental</artifactId>
88+
<artifactId>annotations-processor</artifactId>
8989
<version>${chicory.version}</version>
9090
</path>
9191
</annotationProcessorPaths>
@@ -116,16 +116,16 @@
116116
</plugin>
117117
<plugin>
118118
<groupId>com.dylibso.chicory</groupId>
119-
<artifactId>aot-maven-plugin-experimental</artifactId>
119+
<artifactId>chicory-compiler-maven-plugin</artifactId>
120120
<version>${chicory.version}</version>
121121
<executions>
122122
<execution>
123123
<id>prism</id>
124124
<goals>
125-
<goal>wasm-aot-gen</goal>
125+
<goal>compile</goal>
126126
</goals>
127127
<configuration>
128-
<name>org.prism.Prism</name>
128+
<name>org.prism.PrismModule</name>
129129
<wasmFile>src/test/resources/prism.wasm</wasmFile>
130130
</configuration>
131131
</execution>

java-wasm/src/main/java/org/prism/Prism.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package org.prism;
22

33
import com.dylibso.chicory.runtime.ByteArrayMemory;
4-
import com.dylibso.chicory.experimental.hostmodule.annotations.WasmModuleInterface;
4+
import com.dylibso.chicory.annotations.WasmModuleInterface;
55
import com.dylibso.chicory.runtime.ImportValues;
66
import com.dylibso.chicory.runtime.Instance;
77
import com.dylibso.chicory.wasi.WasiOptions;

0 commit comments

Comments
 (0)