Added Android code
[wl-app.git] / Android / r2-streamer / r2-fetcher / build.gradle
1 apply plugin: 'java'
2
3 ext {
4     bintrayRepo = 'maven'
5     bintrayName = 'readium'
6
7     publishedGroupId = 'org.readium'
8     libraryName = 'r2-fetcher'
9     artifact = 'r2-fetcher'
10
11     libraryDescription = 'Library fetches conveys data from parsers to serve'
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     compile 'org.jsoup:jsoup:1.10.2'
30     implementation project(':r2-streamer:r2-parser')
31 }
32
33 sourceCompatibility = "1.7"
34 targetCompatibility = "1.7"
35
36 apply from: '../bintray/installv1.gradle'
37 apply from: '../bintray/bintrayv1.gradle'
38
39
40