Added Android code
[wl-app.git] / Android / r2-streamer / r2-fetcher / build.gradle
diff --git a/Android/r2-streamer/r2-fetcher/build.gradle b/Android/r2-streamer/r2-fetcher/build.gradle
new file mode 100755 (executable)
index 0000000..6fae579
--- /dev/null
@@ -0,0 +1,40 @@
+apply plugin: 'java'
+
+ext {
+    bintrayRepo = 'maven'
+    bintrayName = 'readium'
+
+    publishedGroupId = 'org.readium'
+    libraryName = 'r2-fetcher'
+    artifact = 'r2-fetcher'
+
+    libraryDescription = 'Library fetches conveys data from parsers to serve'
+
+    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.jsoup:jsoup:1.10.2'
+    implementation project(':r2-streamer:r2-parser')
+}
+
+sourceCompatibility = "1.7"
+targetCompatibility = "1.7"
+
+apply from: '../bintray/installv1.gradle'
+apply from: '../bintray/bintrayv1.gradle'
+
+
+