1

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?

Freewind
  • 193,756
  • 157
  • 432
  • 708

3 Answers3

3

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

Petr Gladkikh
  • 1,906
  • 2
  • 18
  • 31
  • Thanks, but when I checking out, there is an error: `checkout http://svn.apache.org/repos/asf/commons/proper/csv/trunk -r 524170 --depth=infinity --force Bad URL passed to RA layer svn: URL 'http://svn.apache.org/repos/asf/commons/proper/csv/trunk' doesn't exist`. But if I check out the head, it will be OK. – Freewind Apr 12 '12 at 06:07
  • 1
    I believe that revision switch should go before URL (as in my example). Or, alternatively use "@revision_number" notation as in http://stackoverflow.com/questions/1429034/checkout-a-specific-revision-from-subversion-from-command-line – Petr Gladkikh Apr 12 '12 at 08:00
  • You are right, success now. The command in my first comment is generated by subclipse plugin of eclipse, seems not correct. – Freewind Apr 15 '12 at 12:51
1

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.

Mark O'Connor
  • 76,015
  • 10
  • 139
  • 185
0

You can download the same from Commons CSV.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Akash Yadav
  • 2,411
  • 20
  • 32