jsexp is a parser for S-expressions.
- library JAR file
- The Central Repository
- older releases
- as dependency:
<dependency>
<groupId>de.tu-dresden.inf.lat.jsexp</groupId>
<artifactId>jsexp</artifactId>
<version>0.2.2</version>
</dependency>
GNU Lesser General Public License version 3.0 (LGPLv3)
See release notes.
To checkout and compile the project, use:
$ git clone https://github.com/julianmendez/jsexp.git
$ cd jsexp
$ mvn clean install
To compile the project offline, first download the dependencies:
$ mvn dependency:go-offline
and once offline, use:
$ mvn --offline clean install
The bundles uploaded to Sonatype are created with:
$ mvn clean install -DperformRelease=true
and then:
$ cd jsexp/target
$ jar -cf bundle.jar jsexp-*
The version number is updated with:
$ mvn versions:set -DnewVersion=NEW_VERSION
where NEW_VERSION is the new version.
In case you need more information, please contact @julianmendez .