Added Android code
[wl-app.git] / Android / r2-streamer / r2-server / build.gradle
1 apply plugin: 'java'
2
3 ext {
4     bintrayRepo = 'maven'
5     bintrayName = 'readium'
6
7     publishedGroupId = 'org.readium'
8     libraryName = 'r2-server'
9     artifact = 'r2-server'
10
11     libraryDescription = 'Library takes an data from fetcher as an input and exposes in HTTP'
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.nanohttpd:nanohttpd:2.3.1'
30     compile 'org.nanohttpd:nanohttpd-nanolets:2.3.1'
31     implementation project(':r2-streamer:r2-fetcher')
32     implementation project(':r2-streamer:r2-parser')
33 }
34
35 sourceCompatibility = "1.7"
36 targetCompatibility = "1.7"
37
38 apply from: '../bintray/installv1.gradle'
39 apply from: '../bintray/bintrayv1.gradle'