Menu

Installation

Clemens Renner

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.

Using Maven

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:

  • groupId: net.sf.jyntax
  • artifactId: jyntax-lib
  • version: 0.5.3 (or a different version if you prefer)

Jyntax Maven 2 Dependency POM snippet

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>
...

Direct JAR file usage

  1. Download a release from the project's Files section at SourceForge.
  2. Add the jyntax-lib-VERSION.jar to your project's class path.

Resources


Related

Wiki: Main_Page
Wiki: Tutorial

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.