Add instructions to quickly test changes in the extractor

- Make use of the local Maven repository
This commit is contained in:
Mauricio Colli
2019-04-28 17:03:19 -03:00
parent cb1e327a6e
commit b42bebdee8
2 changed files with 19 additions and 0 deletions

View File

@@ -1,15 +1,23 @@
allprojects {
apply plugin: 'java-library'
apply plugin: 'maven'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version 'v0.13.0'
group 'com.github.TeamNewPipe'
repositories {
jcenter()
}
}
dependencies {
implementation project(':extractor')
implementation project(':timeago-parser')
}
subprojects {
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'