From 0e4ff7e9704a8e9e6c8dfb63369e019302f1d047 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Thu, 24 Aug 2017 23:51:48 +0300 Subject: [PATCH] Initial gradle config added --- build.gradle | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 build.gradle diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..02dd5c8 --- /dev/null +++ b/build.gradle @@ -0,0 +1,26 @@ +apply plugin: 'java' +repositories{ + mavenCentral() +} + +sourceCompatibility = 1.6 +jar { + manifest { + attributes("Implementation-Title": "Writer2xhtml", + "Implementation-Version": "0.1.2", + "Main-Class" : "writer2latex.Application", + "Class-Path" : "jasp.jar parser.jar") + } +} + +dependencies{ +compile 'org.libreoffice:jurt:5.3.2' +compile 'org.libreoffice:juh:5.3.2' +compile 'org.libreoffice:ridl:5.3.2' +compile 'org.libreoffice:unoil:5.3.2' +compile 'org.jbibtex:jbibtex:1.0.15' +compile 'org.json:json:20140107' +compile 'junit:junit:4.12' +compile files('idl') +} +