X-Git-Url: https://git.mdrn.pl/wl-app.git/blobdiff_plain/48b2fe9f7c2dc3d9aeaaa6dbfb27c7da4f3235ff..269195b3729c1bdc22e9053ee4ebca667ea8549d:/Android/r2-streamer/r2-parser/build.gradle diff --git a/Android/r2-streamer/r2-parser/build.gradle b/Android/r2-streamer/r2-parser/build.gradle new file mode 100755 index 0000000..7dd5bea --- /dev/null +++ b/Android/r2-streamer/r2-parser/build.gradle @@ -0,0 +1,41 @@ +apply plugin: 'java' + +ext { + bintrayRepo = 'maven' + bintrayName = 'readium' + + publishedGroupId = 'org.readium' + libraryName = 'r2-parser' + artifact = 'r2-parser' + + libraryDescription = 'Library parses xml data from EPUB file into java objects' + + siteUrl = 'https://github.com/readium/r2-streamer-java' + gitUrl = 'https://github.com/readium/r2-streamer-java.git' + + libraryVersion = '0.1.0' + + developerId = 'mobisystech' + developerName = 'CodeToArt' + developerEmail = 'mahavir@codetoart.com' + + licenseName = 'FreeBSD License' + licenseUrl = 'https://en.wikipedia.org/wiki/FreeBSD_Documentation_License#License' + allLicenses = ["FreeBSD"] +} + +dependencies { + compile fileTree(include: ['*.jar'], dir: 'libs') + + final JACKSON_VERSION = '2.8.6' + + compile "com.fasterxml.jackson.core:jackson-core:$JACKSON_VERSION" + compile "com.fasterxml.jackson.core:jackson-annotations:$JACKSON_VERSION" + compile "com.fasterxml.jackson.core:jackson-databind:$JACKSON_VERSION" +} + +sourceCompatibility = "1.7" +targetCompatibility = "1.7" + +apply from: '../bintray/installv1.gradle' +apply from: '../bintray/bintrayv1.gradle' \ No newline at end of file