Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@
<module>sdk</module>
<module>cmdline</module>
<module>examples</module>
<module>wasm-host</module>
</modules>
<activation>
<activeByDefault>true</activeByDefault>
Expand Down
2 changes: 2 additions & 0 deletions wasm-host/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target/
*.wasm
77 changes: 77 additions & 0 deletions wasm-host/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?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>io.opentdf.platform</groupId>
<artifactId>sdk-pom</artifactId>
<version>0.12.0</version>
</parent>

<artifactId>wasm-host</artifactId>
<name>io.opentdf.platform:wasm-host</name>
<description>JVM WASM host for TDF encrypt round-trip validation</description>

<properties>
<chicory.version>1.5.3</chicory.version>
</properties>

<dependencies>
<!-- Chicory pure-Java WASM runtime -->
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>runtime</artifactId>
<version>${chicory.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>wasi</artifactId>
<version>${chicory.version}</version>
<scope>test</scope>
</dependency>

<!-- OpenTDF SDK for crypto classes -->
<dependency>
<groupId>io.opentdf.platform</groupId>
<artifactId>sdk</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<!-- GSON for manifest JSON parsing -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
<scope>test</scope>
</dependency>

<!-- JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<!-- Skip install/deploy for test-only module -->
<plugin>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading
Loading