Changes between Version 8 and Version 9 of FCS


Ignore:
Timestamp:
05/24/16 07:37:31 (8 years ago)
Author:
Oliver Schonefeld
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FCS

    v8 v9  
    1010'''NOTE''': The delivery of implementation guidelines is planned to take place after the finalization of the FCS specification. For now, the links point to non existing Wiki pages.
    1111 * [[FCS/EndpointImplementationGuideline|Endpoint Implementation Guidelines]]
     12}}}
     13== Software for implementing CLARIN-FCS ==
     14 * ''FCS Simple Endpoint'' ([https://trac.clarin.eu/browser/FCSSimpleEndpoint])
     15{{{#!xml
     16<!-- Maven snippet (aka add this to the proper sections of your pom.xml -->
     17
     18<!-- ... -->
     19<dependency>
     20  <groupId>eu.clarin.sru.fcs</groupId>
     21  <artifactId>fcs-simple-endpoint</artifactId>
     22  <version>1.3.0</version>
     23</dependency>
     24
     25<!-- ... --->
     26<repositories>
     27  <repository>
     28    <id>clarin</id>
     29    <url>https://nexus.clarin.eu/content/repositories/Clarin/</url>
     30    <layout>default</layout>
     31  </repository>
     32</repositories>
     33}}}
     34 * ''FCS Annotation Translator'' for use in endpoints ([https://trac.clarin.eu/browser/FCSannotrans])
     35   * Not yet released to CLARIN nexus, add manually to your project!
     36
     37 * ''FCS Simple Client'' ([https://trac.clarin.eu/browser/FCSSimpleClient])
     38{{{#!xml
     39<!-- Maven snippet (aka add this to the proper sections of your pom.xml -->
     40
     41<!-- ... -->
     42<dependency>
     43  <groupId>eu.clarin.sru.fcs</groupId>
     44  <artifactId>fcs-simple-client</artifactId>
     45  <version>1.3.0</version>
     46</dependency>
     47
     48<!-- ... --->
     49<repositories>
     50  <repository>
     51    <id>clarin</id>
     52    <url>https://nexus.clarin.eu/content/repositories/Clarin/</url>
     53    <layout>default</layout>
     54  </repository>
     55</repositories>
    1256}}}
    1357