lumis4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.roastedroot</groupId>
<artifactId>lumis4j</artifactId>
<version>0.0.8</version>
</dependency><?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.roastedroot</groupId>
<artifactId>lumis4j-parent</artifactId>
<version>0.0.8</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>lumis4j</artifactId>
<packaging>jar</packaging>
<name>Lumis4J</name>
<dependencies>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>annotations</artifactId>
<version>${chicory.version}</version>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>runtime</artifactId>
<version>${chicory.version}</version>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>wasi</artifactId>
<version>${chicory.version}</version>
</dependency>
<!-- ============= Testing ============= -->
<dependency>
<groupId>com.approvaltests</groupId>
<artifactId>approvaltests</artifactId>
<version>${approvaltests.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</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>lumis</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<name>io.roastedroot.lumis4j.core.LumisModule</name>
<wasmFile>../lumis.wasm</wasmFile>
<!-- <interpreterFallback>WARN</interpreterFallback> -->
<interpretedFunctions>
<function>369</function>
<function>372</function>
<function>374</function>
<function>377</function>
<function>383</function>
<function>385</function>
<function>408</function>
<function>421</function>
<function>432</function>
<function>440</function>
<function>448</function>
<function>453</function>
<function>463</function>
<function>525</function>
<function>567</function>
<function>600</function>
<function>602</function>
<function>621</function>
<function>635</function>
<function>643</function>
<function>644</function>
<function>745</function>
<function>766</function>
<function>774</function>
<function>778</function>
<function>785</function>
<function>810</function>
</interpretedFunctions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>normalize-wasm-path</id>
<goals>
<goal>run</goal>
</goals>
<phase>initialize</phase>
<configuration>
<target>
<property location="${project.basedir}/../lumis.wasm" name="wasm.resource.path.raw"/>
<makeurl file="${wasm.resource.path.raw}" property="wasm.resource.url.temp"/>
<loadresource property="wasm.resource.url">
<propertyresource name="wasm.resource.url.temp"/>
<filterchain>
<tokenfilter>
<replaceregex pattern="^file:/" replace="file:///"/>
</tokenfilter>
</filterchain>
</loadresource>
</target>
<exportAntProperties>true</exportAntProperties>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>checkstyle</id>
<goals>
<goal>check</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>com.dylibso.chicory</groupId>
<artifactId>annotations-processor</artifactId>
<version>${chicory.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<executions>
<execution>
<id>filtering-java-templates</id>
<goals>
<goal>filter-sources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>