5 bintrayName = 'readium'
7 publishedGroupId = 'org.readium'
8 libraryName = 'r2-parser'
11 libraryDescription = 'Library parses xml data from EPUB file into java objects'
13 siteUrl = 'https://github.com/readium/r2-streamer-java'
14 gitUrl = 'https://github.com/readium/r2-streamer-java.git'
16 libraryVersion = '0.1.0'
18 developerId = 'mobisystech'
19 developerName = 'CodeToArt'
20 developerEmail = 'mahavir@codetoart.com'
22 licenseName = 'FreeBSD License'
23 licenseUrl = 'https://en.wikipedia.org/wiki/FreeBSD_Documentation_License#License'
24 allLicenses = ["FreeBSD"]
28 compile fileTree(include: ['*.jar'], dir: 'libs')
30 final JACKSON_VERSION = '2.8.6'
32 compile "com.fasterxml.jackson.core:jackson-core:$JACKSON_VERSION"
33 compile "com.fasterxml.jackson.core:jackson-annotations:$JACKSON_VERSION"
34 compile "com.fasterxml.jackson.core:jackson-databind:$JACKSON_VERSION"
37 sourceCompatibility = "1.7"
38 targetCompatibility = "1.7"
40 apply from: '../bintray/installv1.gradle'
41 apply from: '../bintray/bintrayv1.gradle'