Reputation: 198218
I'm working on a project which requires commons-csv v0.1-524170
, I have a link of the site of commons-csv: http://commons.apache.org/sandbox/csv/ , but I can't find that version.
I need it with the exact version of 0.1-524170
, where can I get it?
Upvotes: 1
Views: 3991
Reputation: 77961
According to the documentation there are currently no official downloads, and will not be until CSV moves out of the Sandbox.
That doesn't stop you from retrieving the development snapshot revisions from Apache's Nexus repository:
If you just want a download URL that retrieves the latest snapshot revision:
In conclusion, no sign of a 0.1 revision... Looks like you'll have to build it from source if you really need it.
Upvotes: 1
Reputation: 1932
Their site (http://commons.apache.org/csv/) says that they do not have releases yet and all ready available builds are nightly. So it is not a good idea to depend on it unless you are willing to live on bleeding edge.
I suggest using some recent build and do integration tests.
If you DO need exactly that version you could checkout that revision from subversion and build it yourself: svn checkout -r 524170 http://svn.apache.org/repos/asf/commons/proper/csv/trunk commons-csv
Upvotes: 3