Hi, On Jan 12, 2008 9:51 PM, Sami Siren <[EMAIL PROTECTED]> wrote: > No, I am not sure what I am suggesting. According to > http://www.apache.org/dev/repository-faq.html there is a incubator > repository where we could put those (if this is the current policy of > apache.org)
Yes, we can put the Maven artifacts in the Incubator repository at http://people.apache.org/repo/m2-incubating-repository/. The rationale for having a separate staging repository is that we need to review the artifacts in the release vote before publishing them in the Maven repository. I've copied the artifacts from the staging repository to the Incubator repository, see http://people.apache.org/repo/m2-incubating-repository/org/apache/tika/. You can use Tika 0.1-incubating in your Maven 2 project if you specify http://people.apache.org/repo/m2-incubating-repository/ as an additional repository. Something like this: <repositories> <repository> <id>apache.incubator</id> <name>Apache Incubator Repository</name> <url>http://people.apache.org/repo/m2-incubating-repository</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.tika</groupId> <artifactId>tika</artifactId> <version>0.1-incubating</version> </dependency> </dependencies> BR, Jukka Zitting