Just need a jar?
The latest released version is 1.4:
Are you a Maven User?
Just the following to your pom.xml file:
<dependency> <groupId>org.fusesource.jansi</groupId> <artifactId>jansi</artifactId> <version>1.4</version> </dependency>
Building Against Snapshots
If you want to run against a SNAPSHOT which has not made it into the maven central repository, just add the Fusesource snapshot repository to your pom.xml file:
<repositories> <repository> <id>fusesource.snapshot</id> <url>http://repo.fusesource.com/nexus/content/repositories/snapshots/</url> <snapshots><enabled>true</enabled></snapshots> <releases><enabled>false</enabled></releases> </repository> </repositories>