syndicate-storage / syndicate

Internet-scale software-defined storage system
Apache License 2.0
56 stars 10 forks source link

Uploading dependent JAR packages #5

Closed iychoi closed 11 years ago

iychoi commented 11 years ago

I'm working to make Syndicate available in Java, specifically in Hadoop MapReduce.

To compile Java files that I'm working on, Hadoop package is required.

But the problem is that JAR file is around 4MB in its size.

How do you think uploading this file to the Github?

jcnelson commented 11 years ago

Don't upload it :) Instead, modify the SConscript file to download it somewhere outside the repository if it isn't present, and then use it in the build process.

-Jude

----- Original Message ----- From: "Illyoung Choi" notifications@github.com To: "jcnelson/syndicate" syndicate@noreply.github.com Sent: Wednesday, June 19, 2013 9:36:27 PM Subject: [syndicate] Uploading dependent JAR packages (#5)

I'm working to make Syndicate available in Java, specifically in Hadoop MapReduce.

To compile Java files that I'm working on, Hadoop package is required.

But the problem is that JAR file is around 4MB in its size.

How do you think uploading this file to the Github?

— Reply to this email directly or view it on GitHub .

iychoi commented 11 years ago

I added downloader to build/util/ folder. The downloader parses XML file and downloads files from public library repositories.

Thanks.