swagger2raml [](https://travis-ci.org/8x8Cloud/swagger2raml) [](https://ci.appveyor.com/project/mmatloka/swagger2raml/build/artifacts) [](https://bintray.com/8x8/maven/swagger2raml/view?source=watch)
January 15, 2015 ยท View on GitHub
A utility to generate RAML documentation from Swagger JSON.
Usage
swagger2raml can be used either from command line (requires Java to be on the PATH) or as a Java library.
Command line
java -jar swagger2raml-1.0.0.jar [-o outputFileName] <swaggerApiUrl>
where:
outputFileNameis an optional parameter to specify the RAML file name (default isapi.raml),swaggerApiUrlis the URL of the Swagger API endpoint which provides resource listing as JSON.
Your application
RamlGenerator.generateFromSwaggerUrl(String url, String outputFileName)
method with the parameters as described in the command line usage.
Grab the JAR from Maven (Bintray or Maven Central repository) or use the bundled one:
Gradle
repositories {
mavenCentral()
}
compile 'com.8x8.cloud:swagger2raml:1.0.0'
Maven
<dependency>
<groupId>com.8x8.cloud</groupId>
<artifactId>swagger2raml</artifactId>
<version>1.0.0</version>
</dependency>
Bundled JAR
Add swagger2raml-1.0.0-bundled.jar from Releases to your CLASSPATH
Contributing to this project
Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing.