patriques82 / alphavantage4j

(Repository is not maintained anymore) A Java wrapper to get stock data and stock indicators from the Alpha Vantage API
https://www.alphavantage.co/
Apache License 2.0
124 stars 73 forks source link

Proposing to add building of sources jar #33

Open nsdhillon1 opened 6 years ago

nsdhillon1 commented 6 years ago

Since sources jar helps with debugging, please consider adding the following to build.gradle

task sourcesJar(type: Jar, dependsOn: classes) { classifier = 'sources' from sourceSets.main.allSource }

artifacts { archives sourcesJar }