Where to find MorfologikTagger

Hi,

I’m working with some friends on a french spelling serious game, and we need to get the part-of-speech of a given word.
After some research, we found MorfologikTagger on the LanguageTool API. According to the API, MorfologikTagger is in org.languagetool.tagging but in the jar of the version 3.1, downloaded on the website, there is only org.languagetool.dev and org.languagetool.gui.
Could someone help us finding MorfologikTagger please ? I know we could get it from sources, but I think it will be faster if we use the jar.

Thanks !

Kiraboss

It’s in libs/languagetool-core.jar. But as it depends on other JARs, I recommend getting it via a build tool like Maven or Gradle:

<dependency>
    <groupId>org.languagetool</groupId>
    <artifactId>languagetool-core</artifactId>
    <version>3.1</version>
</dependency>

Thanks a lot, ok I will try that !