Skip to content
rzanoli edited this page Jan 23, 2014 · 20 revisions

We provide different distributions for users depending on the fact that they want to get the code as a Zip File or they want to use the EOP Maven Artifacts as dependencies of they code. Common to all of the distributions is the necessity to download an additional archive file containing the resources (like WordNet and Wikipedia) and the configuration files needed to use the platform; this archive file can be downloaded from the EOP repository as described below in Configuration Files, Models and Resources. Differently to users who want to use the platform as it is, people who want to contribute to developing the platform must use the distributions dedicated to the developers (i.e. Developers Distribution).

Zip File

EOP v1.0.2 is now available for download.

Maven Artifacts

EOP is also distributed via the EOP maven artifactory repository and the maven artifacts are located here. They include the binary code, the sources code and the javadoc jars. To use EOP in your project specify the following dependencies in the pom.xml file of your project; all transient dependencies are resolved automatically.

<dependencies>
  <dependency>
    <groupId>eu.excitementproject</groupId>
    <artifactId>core</artifactId>
    <version>1.0.2</version>
  </dependency>
</dependencies>

Repositories exist as a place to collect and store artifacts. Whenever a project has a dependency upon an artifact, Maven will first attempt to use a local copy of the specified artifact. If that artifact does not exist in the local repository, it will then attempt to download from a remote repository. The repository elements within a POM specify those alternate repositories to search. To use EOP this repository has to be put in the pom.xml file of your project to:

<repositories>
  <repository>
    <id>FBK</id>
    <url>http://hlt-services4.fbk.eu:8080/artifactory/repo</url>
    <snapshots>
      <enabled>false</enabled>
    </snapshots>
  </repository>
</repositories>

Configuration Files, Models and Resources

Resources like WordNet and Wikipedia as well as the configuration files of the platform, the pre-trained models created by training the platform on the data sets and the data sets themselves are distributed in a separate archive file that can be downloaded from:

This archive contains internal/external libraries and resources whose licence is compatible with General Public License (GPL) version 3. Libraries and resources with GPL 3.0 incompatible licenses have to be downloaded and installed separately from their own web sites.

Clone this wiki locally