tags:

views:

599

answers:

2

Does anyone know if the Thrift libraries are in any Maven repository?

+1  A: 

I'm not sure what the Thrift libraries are (next time, maybe add a link) but according to Maven Browser, there is a thrift artifact in the scala-tools repository:

<repositories>
  <repository>
    <id>scala-tools</id>
    <url>http://scala-tools.org/repo-releases/&lt;/url&gt;
  </repository>
</repositories>

Update: I can't say much about the version (and the content) hosted in the scala-tools repository but this is very likely an artifact made available by the scala folks for their own needs. Actually, the Apache Thrift project is using Ivy and publishing the java library to a maven repository (it will be the Apache snapshots repository, see THRIFT-363) is something on which they didn't work until recently. But the issue is closed now and my understanding is that they will publish an artifact with the next release.

Pascal Thivent
http://incubator.apache.org/thrift/download/ weird that in the repo it says version 1.0, but on the web page its only 0.2.0
wuntee
A: 

As of now there are not any available, you will have to include the jar in your local repository.

You can set up something like Artefactory, a local repository and add the libthrift.jar there.

sheki