Skip to content

Commit

Permalink
Merge branch 'support/v0.4.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Jul 9, 2016
2 parents 811d0d0 + 4bbb8e4 commit 6b0f933
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/user-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To run the pipeline properly, a system equipped with and able to handle at least

Furthermore, the pipeline depends on a *internet connection* when running to download the models for the current configuration. *It does not work off line!*

The pipeline requires *Java 1.8* or higher. You can download Java from the http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html[Oracle website]. You can check your current Java version by running `java -version` in your command line.
The pipeline requires *Java 1.8* or higher. You can download Java from the http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html[Oracle website]. You can check your current Java version by running `java -version` in your command line. You should use the *64 bit* version of Java in order to be able to allocate ≥ 4 GB of RAM.

== Running the Pipeline

Expand Down Expand Up @@ -193,7 +193,9 @@ posTaggerArguments = executablePath,string,C:/tree-tagger/bin/tree-tagger.exe,\
useLemmatizer = false
----

Change the paths for the parameter _executablePath_ and _modelLocation_ to the correct paths on your machine. You can then use TreeTagger in your pipeline using the `-config` argument:
Change the paths for the parameter _executablePath_ and _modelLocation_ to the correct paths on your machine. Beware these values are case sensitive even on Windows – when unsure, copy & paste the paths from Explorer.

You can then use TreeTagger in your pipeline using the `-config` argument:

[subs="attributes"]
----
Expand Down
10 changes: 10 additions & 0 deletions update-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh

mvn clean
git worktree prune
if git worktree add target/generated-docs gh-pages
then
mvn verify
cd target/generated-docs
git commit -a
fi

0 comments on commit 6b0f933

Please sign in to comment.