From c41f08189effed81effad8d5ce92a119ba353050 Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Mon, 15 Aug 2022 10:36:28 +0200 Subject: [PATCH] Minor docs updates --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index edb21d9..51eeead 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ Download and install [WildFly](https://www.wildfly.org/) >= 25.0.1 Deploy the build from this project in Wildfly. -Wildfly should run on Java >= 14 +Wildfly should run on Java >= 11 ### Adding models To add models, create this folder in WildFly: -`[WILDFLY_ROOT]/modules//no/nibio/vips/modelcontainer/main/` +`[WILDFLY_ROOT]/modules/no/nibio/vips/modelcontainer/main/` Add the model jar file, and edit module.xml accordingly. ``` xml @@ -43,6 +43,7 @@ Add the model jar file, and edit module.xml accordingly. <module name="com.fasterxml.jackson.core.jackson-core" export="false"/> <module name="com.fasterxml.jackson.core.jackson-databind" export="false"/> <module name="com.vividsolutions.jts" export="false"/> + <module name="org.renjin" export="false"/> </dependencies> </module> @@ -52,6 +53,5 @@ Add the model jar file, and edit module.xml accordingly. You also need to make sure you have the dependency modules available. - ## Create client for a model See [create_client.md](./docs/create_client.md) -- GitLab