Question

I want to build the LanguageTool Java project from source. This page gives basic instructions for obtaining the "Maven artifact" with all the sources:

http://languagetool.org/java-api/

I'm an expert Java developer but I've never used Maven before. Can someone please tell me how to get the LanguageTool project and all source code into Eclipse so I can modify and build it?

Thanks in advance...

Was it helpful?

Solution

At the bottom of the page you linked (Language Tool) is another link to the svn repository. That's where you'll get the source code and instructions on how to build the tool yourself.

In general, open source projects will highlight the maven artifact as it allows others to use their code in the easiest way possible. Only a few folks like to build the code themselves so the links to the source repositories are often less conspicuous.

OTHER TIPS

There is no automated way to do this.

Best is to start a basic maven project (manually or through a Maven Archetype, import the sources in the Standard Directory Layout, and start adding dependencies to the pom.xml in order to get it to compile.

Libraries like commons,lucene,... are pretty easy to find in the various maven repositories).

Other libs you will probably have to install yourself in your local repository or remote repository.

There's a maven plugin for eclipse if that is your preferred IDE.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top