Restlet Framework

Restlet Framework is the most widely used open source
solution for Java developers who want to create and use APIs.

restlet_icons_screen

Version 2.4.4 Java SE

Release date: 2024-06-20

Other Editions

The Maven repository for Restlet is accessible from https://maven.restlet.talend.com and contains all Restlet JARs and third party dependencies that aren’t available in the main public Maven repository. It is automatically refreshed once a day if the build succeeds.

Sample POM for version 2.5

Each Restlet Framework project needs at least one dependency: the Restlet core module and we assume that you will use Jackson for JSON support. As Restlet is now published into the Maven Central repository, just edit the pom.xml file for your project and add the following lines of text. For the GWT edition, just use “org.restlet.gwt” for the groupId instead of “org.restlet”:

<properties>
  <restlet-version>2.5.0</restlet-version>
</properties>

<dependencies>
  <dependency>
    <groupId>org.restlet</groupId>
    <artifactId>org.restlet</artifactId>
    <version>${restlet-version}</version>
  </dependency>
  <dependency>
    <groupId>org.restlet</groupId>
    <artifactId>org.restlet.ext.jackson</artifactId>
    <version>${restlet-version}</version>
  </dependency>
</dependencies>

Download Sample | More information