Download
One step to start working with your web application. Include the jar file or the Maven dependency in your project ;)
In this download area, you are able to download the latest distribution as JAR file or you can find the maven dependency to setup your project.
Maven dependency
JSmart is also available on The Central Repository to be integrated on Maven, just add the
following dependency to your pom.xml
:
<dependency>
<groupId>com.jsmartframework</groupId>
<artifactId>jsmart-web</artifactId>
<version>3.0.4</version>
</dependency>
In case you need to specify the Sonatype Central Repository for released versions, just add the
following code to your pom.xml
:
<repositories>
<repository>
<id>oss.sonatype</id>
<url>https://oss.sonatype.org/content/repositories/releases/</url>
</repository>
</repositories>
In case you want to stay in touch with JSmart Framework recent updates including Java 8
support, please go with SNAPSHOT version also available on The Central Repository. Just
add the following dependency and repository to your pom.xml
:
<dependency>
<groupId>com.jsmartframework</groupId>
<artifactId>jsmart-web</artifactId>
<version>3.0.5-SNAPSHOT</version>
</dependency>
<repositories>
<repository>
<id>oss.sonatype.snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
GitHub project
JSmart is an Open Source project licensed under GNU Lesser General Public License, Version 3.0. Clone us on GitHub via the following command:
git clone https://github.com/jefalbino/jsmart-web.git