Yuhan
On Fri, Jan 13, 2012 at 1:51 PM, Ken Krugler <KKrugler_lists@...> wrote:
Hi Yuhan,
On Jan 4, 2012, at 11:23am, Yuhan Zhang wrote:hmm. I found bixo-core 1.0-SNAPSHOT, but still getting compilation error for missing symbols:
cannot find symbol
symbol : class ContentBytes
location: package bixo.datum
symbol : class BaseFetcher
location: package bixo.fetcher
...
The artifact that I used:
<dependency>
<groupId>bixo</groupId>
<artifactId>bixo-core</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
It is different from the snapshot that I checked out... Is there a place that lists all the available versions?There's no easy way to find all available Bixo versions, since these are located in a Maven repo created by using GitHub project "pages", which don't support listing of directories (unfortunately). If you pull from the bixo.github.com project on github.com/bixo (https://github.com/bixo/bixo.github.com.git), you'll get all of the released versions, which is currently:0.4.8/ 0.5.0/ 0.5.1/ 0.6.0/ 0.6.1/If you're using bixo-core 1.0-SNAPSHOT, that's something you should be building from source.
To get the most recent version, you'll 'git pull' from the GitHub/bixo/bixo project (git://github.com/bixo/bixo.git), then run 'ant clean install'.This would build and put a 1.0-SNAPSHOT version into your local Maven repo, typically at ~/.m2/repository/-- KenWed, Jan 4, 2012 at 11:08 AM, Yuhan Zhang <yzhang@...> wrote:
hi Ken,
Is bixo-core-1.0.jar in the maven repository? I'm looking for bixo's maven artifact, but was only able to find version 0.6.0.
and it gives me compilation error for missing a lot of the classes.
Here's the maven dependency that I found:
<dependency>
<groupId>bixo</groupId>
<artifactId>bixo-core</artifactId>
<version>0.6.0</version>
</dependency>
Thank you.
Yuhan
--------------------------Ken Krugler