From 54dc85cb254f2f0a735ec8c10babc433030fff0d Mon Sep 17 00:00:00 2001
From: "Michael Paffrath (mpaffrat)" <mpaffrat@cit-ad.fh-koeln.de>
Date: Mon, 5 Apr 2021 00:32:11 +0200
Subject: [PATCH] 1.0.2

- .gitignore updated (ignore *.iml)
- deleted *.iml from repo
- updated README.md
---
 .gitignore    |  2 ++
 Java/Java.iml | 12 ------------
 README.md     | 20 +++++++++++++++++---
 3 files changed, 19 insertions(+), 15 deletions(-)
 delete mode 100644 Java/Java.iml

diff --git a/.gitignore b/.gitignore
index cf5758d..fc8a549 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,10 +1,12 @@
 # Java
 .idea/
 out/
+*.iml
 
 # C Sharp
 [Bb]in/
 [Oo]bj/
+.vs/
 
 # Python
 .vscode/
\ No newline at end of file
diff --git a/Java/Java.iml b/Java/Java.iml
deleted file mode 100644
index b923cfd..0000000
--- a/Java/Java.iml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module type="JAVA_MODULE" version="4">
-  <component name="NewModuleRootManager" inherit-compiler-output="true">
-    <exclude-output />
-    <content url="file://$MODULE_DIR$">
-      <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
-    </content>
-    <orderEntry type="inheritedJdk" />
-    <orderEntry type="sourceFolder" forTests="false" />
-    <orderEntry type="library" name="poi-ooxml-5.0.0" level="project" />
-  </component>
-</module>
\ No newline at end of file
diff --git a/README.md b/README.md
index 8a8651c..ca22319 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,22 @@ This demo contains basic code to access Excel sheet data via the following progr
 - C#
 - Python
 
+Usage requirements
+
+Java:
+1) Downloaded Apache POI Libraries (https://poi.apache.org/)
+2a) Add necessary .xlsx POI libraries as external libraries in your Java IDE
+2b) Add necessary .xlsx POI libraries to your Java classpath and run the Main.java
+
+C#:
+1a) Installed Office version (includes installed Primary Interop Assemblies)
+1b) Installed Primary Interop Assemblies
+
+Python:
+1) Installed OpenPyXL Library (https://openpyxl.readthedocs.io/en/stable/#)
+
 !Only tested against the following Environment!
 - Win10
-- IntelliJ (Java)
-- Visual Studio 2019 (C#)
-- Visual Studio Code (Python)
\ No newline at end of file
+- IntelliJ (Java) with Apache POI v5.0.0
+- Visual Studio 2019 (C#) with installed Office 2016 => Microsoft Excel 16.0 Object Library
+- Visual Studio Code (Python 2.7) with installed OpenPyXL
\ No newline at end of file
-- 
GitLab