Æsh Downloads

All the Æsh versions are located on maven central. If you are using maven the easiest would be to add this to your pom.xml:
<dependency>
  <groupId>org.jboss.aesh</groupId>
  <artifactId>aesh</artifactId>
  <version>${version.aesh}</version>
</dependency>
For aesh-extensions:
<dependency>
  <groupId>org.jboss.aesh</groupId>
  <artifactId>aesh-extensions</artifactId>
  <version>${version.aesh}</version>
</dependency>

Using "Gradle":http://www.gradle.org/:

dependencies {
    compile group: 'org.jboss.aesh', name: 'aesh', version: '0.+'
}

Direct downloads

Version Direct Download
0.41 aesh-0.41.jar
0.40 aesh-0.40.jar
0.33.8 aesh-0.33.8.jar
0.33.7 aesh-0.33.7.jar
back to top