hltfbk / Excitement-Open-Platform

Excitement Open Platform for Recognizing Textual Entailments
http://hltfbk.github.io/Excitement-Open-Platform/
86 stars 74 forks source link

No eu.excitementproject in Maven central repository #534

Open pauljurczak opened 8 years ago

pauljurczak commented 8 years ago

I can't find eu.excitementproject in Maven central repository. Should I look under different name?

rzanoli commented 8 years ago
hlt-services4.fbk.eu hlt-services4.fbk.eu-releases http://hlt-services4.fbk.eu:8080/artifactory/releases
rzanoli commented 8 years ago
<distributionManagement>
        <repository>
            <id>hlt-services4.fbk.eu</id>
            <name>hlt-services4.fbk.eu-releases</name>
            <url>http://hlt-services4.fbk.eu:8080/artifactory/releases</url>
        </repository>
</distributionManagement>
pauljurczak commented 8 years ago

I still don't see hlt-services4.fbk.eu or hlt-services4.fbk.eu-releases on Maven.

gilnoh commented 8 years ago

Excitement artifacts are NOT on Maven Central. You have to add another repository (Which holds Excitement artifacts). And that's in Roberto's reply, which was:

hlt-services4.fbk.eu hlt-services4.fbk.eu-releases http://hlt-services4.fbk.eu:8080/artifactory/releases

Once you add that repository, you will see all the artifacts.You can check the repository content by visiting it yourself. So if you still don't see it, it means that your configuration isn't right.

On Thu, Nov 19, 2015 at 11:51 AM, Paul Jurczak notifications@github.com wrote:

I still don't see hlt-services4.fbk.eu or hlt-services4.fbk.eu-releases on Maven.

— Reply to this email directly or view it on GitHub https://github.com/hltfbk/Excitement-Open-Platform/issues/534#issuecomment-158020927 .

reckart commented 8 years ago

Actually, you have to add it as <repositories> not as <distributionManagement>:

 <repositories>
    <repository>
        <id>hlt-services4.fbk.eu</id>
        <name>hlt-services4.fbk.eu-releases</name>
        <url>http://hlt-services4.fbk.eu:8080/artifactory/releases</url>
    </repository>
 </repositories>
rzanoli commented 8 years ago

The step by step tutorial of EOP1.2.3 explains how to do that: https://github.com/hltfbk/EOP-1.2.3/wiki/Step-by-Step-Tutorial

You can also take a look at the "Hello World" project. It uses the EOP as a library. https://github.com/hltfbk/EOP-1.2.3/wiki/Hello%20World!%20code%20and%20additional%20examples