From 53e1367c73efb6e1e7f1cf2cb1584ad0f32ecdb1 Mon Sep 17 00:00:00 2001 From: Thomas Battermann Date: Sun, 21 Jun 2015 02:30:26 +0200 Subject: [PATCH] Added new external Library Added script to download dependencies --- TodoList.iml | 9 +++++++++ ext/get-dependencies.sh | 14 ++++++++++++++ 2 files changed, 23 insertions(+) create mode 100755 ext/get-dependencies.sh diff --git a/TodoList.iml b/TodoList.iml index feac04f..dc6f51b 100644 --- a/TodoList.iml +++ b/TodoList.iml @@ -28,5 +28,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/ext/get-dependencies.sh b/ext/get-dependencies.sh new file mode 100755 index 0000000..4acf604 --- /dev/null +++ b/ext/get-dependencies.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +echo "Downloading Apache Commons Codec" +wget -O apache-codec.tgz http://mirror.cogentco.com/pub/apache//commons/codec/binaries/commons-codec-1.10-bin.tar.gz +tar xvf apache-codec.tgz +rm -v apache-codec.tgz + +echo "Downloading Apache Commons Validation" +wget -O apache-valiator.tgz http://mirrors.gigenet.com/apache//commons/validator/binaries/commons-validator-1.4.1-bin.tar.gz +tar xvf apache-valiator.tgz +rm -v apache-valiator.tgz + +echo "Downloading OpenCSV" +wget -O opencsv.jar http://sourceforge.net/projects/opencsv/files/latest/download