Changes between Initial Version and Version 1 of AnnotationManagerN4J


Ignore:
Timestamp:
Nov 14, 2012, 1:28:03 PM (12 years ago)
Author:
casties
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnnotationManagerN4J

    v1 v1  
     1= AnnotationManagerN4J =
     2
     3AnnotationManagerN4J is an annotation server compatible with the [[http://okfnlabs.org/annotator/|Annotator]] client by implementing the [[https://github.com/okfn/annotator/wiki/Storage|Annotator storage API]] (with some extensions).
     4
     5It is implemented in Java using the [[http://www.restlet.org/|Restlet]] framework and the [[http://neo4j.org/|Neo4J]] graph database. It is built using [[http://maven.apache.org/|Maven]].
     6
     7
     8== Source ==
     9
     10The source code can be browsed [[source:AnnotationManagerN4J|here]] or in the [[http://mercurial.selenic.com/|Mercurial]] repository at https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J/
     11
     12
     13== Building ==
     14
     15To check out and build AnnotationManagerN4J you need [[http://mercurial.selenic.com/|Mercurial]] and [[http://maven.apache.org/|Maven]]:
     16
     171. `hg clone https://it-dev.mpiwg-berlin.mpg.de/hg/AnnotationManagerN4J`
     182. `cd AnnotationManagerN4J`
     193. `mvn package` (this produces the web-app as a directory `target/AnnotationManager` or war file `target/AnnotationManager.war`)
     20
     21
     22=== Prerequisites ===
     23
     24Before you can build AnnotationManagerN4J you need the [[http://code.google.com/p/jsontoken|jsontoken]] library in version 1.1 which is currently not automatically included by Maven. You have to check out the source code from http://code.google.com/p/jsontoken/source/checkout using SVN and build with Maven:
     25
     261. `svn checkout http://jsontoken.googlecode.com/svn/trunk/ jsontoken`
     272. `cd jsontoken`
     283. `mvn install`
     29