From 2c3f2542c443e24a9e6e48413c8373a1f37f0349 Mon Sep 17 00:00:00 2001 From: knaccc Date: Mon, 14 Jan 2019 19:06:49 +0000 Subject: [PATCH] fixed basedir --- README.md | 4 ++-- src/module-info.java | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4f8ea4c..bf252f6 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,11 @@ sudo apt-get update sudo apt-get install i2p ``` -Then copy the following 5 JAR files from the I2P installation to the import/lib directory in your clone of this GitHub project: +Then copy the following 56 JAR files from the I2P installation to the import/lib directory in your clone of this GitHub project: ``` mkdir -p import/lib -for i in i2p.jar mstreaming.jar router.jar sam.jar streaming.jar; do cp /usr/share/i2p/lib/$i import/lib/; done +for i in i2p.jar mstreaming.jar router.jar sam.jar streaming.jar gnu-getopt.jar libintl.jar; do cp /usr/share/i2p/lib/$i import/lib/; done ``` You will need OpenJDK 11 installed: diff --git a/src/module-info.java b/src/module-info.java index 1ffde98..74f234d 100644 --- a/src/module-info.java +++ b/src/module-info.java @@ -4,4 +4,6 @@ module org.getmonero.i2p.embedded { requires streaming; requires router; requires sam; + requires libintl; + requires gnu.getopt; } \ No newline at end of file