X-Git-Url: https://git.mdrn.pl/wl-app.git/blobdiff_plain/48b2fe9f7c2dc3d9aeaaa6dbfb27c7da4f3235ff..269195b3729c1bdc22e9053ee4ebca667ea8549d:/Android/r2-streamer/r2-server/build.gradle diff --git a/Android/r2-streamer/r2-server/build.gradle b/Android/r2-streamer/r2-server/build.gradle new file mode 100755 index 0000000..fa10f4d --- /dev/null +++ b/Android/r2-streamer/r2-server/build.gradle @@ -0,0 +1,39 @@ +apply plugin: 'java' + +ext { + bintrayRepo = 'maven' + bintrayName = 'readium' + + publishedGroupId = 'org.readium' + libraryName = 'r2-server' + artifact = 'r2-server' + + libraryDescription = 'Library takes an data from fetcher as an input and exposes in HTTP' + + 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') + compile 'org.nanohttpd:nanohttpd:2.3.1' + compile 'org.nanohttpd:nanohttpd-nanolets:2.3.1' + implementation project(':r2-streamer:r2-fetcher') + implementation project(':r2-streamer:r2-parser') +} + +sourceCompatibility = "1.7" +targetCompatibility = "1.7" + +apply from: '../bintray/installv1.gradle' +apply from: '../bintray/bintrayv1.gradle' \ No newline at end of file