jyntax Wiki
Status: Beta
Brought to you by:
clemensrenner
Installation of Jyntax is simple and straightforward. You can either use Apache Maven to integrate Jyntax into your project or obtain the latest release directly from the Jyntax downloads page.
When you're done, see the [Tutorial] for information on how to use Jyntax in your project.
Jyntax releases are available via the central Maven repository that is accessed by Maven automatically when searching for missing project dependencies. You will need to add the following dependency to your project:
Use the following snippet in your POM file (adapt where necessary).
... <dependencyManagement> <dependencies> ... <dependency> <groupId>net.sf.jyntax</groupId> <artifactId>jyntax-lib</artifactId> <version>0.5.3</version> </dependency> ... </dependencies> </dependencyManagement> ... <build> <dependencies> <dependency> <groupId>net.sf.jyntax</groupId> <artifactId>jyntax-lib</artifactId> </dependency> </dependencies> </build> ...