From 00df1ee7f6f0ac0d67b936650e9929d8d90bccac Mon Sep 17 00:00:00 2001 From: Rik Veenboer Date: Mon, 24 Nov 2014 22:54:18 +0000 Subject: [PATCH] Stub for build.gradle and add gradle wrapper --- build.gradle | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 build.gradle diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..e999b4e --- /dev/null +++ b/build.gradle @@ -0,0 +1,22 @@ +apply plugin: 'java' +apply plugin: 'cpp' +apply plugin: 'maven' +apply plugin: 'eclipse' + +repositories { + maven { + url 'https://github.com/Boukefalos/jlibloader/raw/mvn-repo/' + } +} + +dependencies { + compile 'com.github.boukefalos:jlibloader:0.1' +} + +group = 'com.github.boukefalos' +project.archivesBaseName = 'jlibwiiuse' +version = '0.13' + +task wrapper(type: Wrapper) { + gradleVersion = '1.12' +} \ No newline at end of file