Added Android code
[wl-app.git] / Android / r2-streamer / r2-parser / build.gradle
1 apply plugin: 'java'
2
3 ext {
4     bintrayRepo = 'maven'
5     bintrayName = 'readium'
6
7     publishedGroupId = 'org.readium'
8     libraryName = 'r2-parser'
9     artifact = 'r2-parser'
10
11     libraryDescription = 'Library parses xml data from EPUB file into java objects'
12
13     siteUrl = 'https://github.com/readium/r2-streamer-java'
14     gitUrl = 'https://github.com/readium/r2-streamer-java.git'
15
16     libraryVersion = '0.1.0'
17
18     developerId = 'mobisystech'
19     developerName = 'CodeToArt'
20     developerEmail = 'mahavir@codetoart.com'
21
22     licenseName = 'FreeBSD License'
23     licenseUrl = 'https://en.wikipedia.org/wiki/FreeBSD_Documentation_License#License'
24     allLicenses = ["FreeBSD"]
25 }
26
27 dependencies {
28     compile fileTree(include: ['*.jar'], dir: 'libs')
29
30     final JACKSON_VERSION = '2.8.6'
31
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"
35 }
36
37 sourceCompatibility = "1.7"
38 targetCompatibility = "1.7"
39
40 apply from: '../bintray/installv1.gradle'
41 apply from: '../bintray/bintrayv1.gradle'