Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Update Readme, avoid java8 javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
svacas committed Aug 17, 2016
1 parent 341bea0 commit a123b0b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Java RAML 1.0 Parser <sup>(beta)</sup>
# RAML Java Parser
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/raml-org/raml-java-parser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

See http://raml.org for more information about RAML.
This is a Java implementation of a [RAML](http://raml.org) parser for versions [1.0](http://raml.org/raml-10-spec) and [0.8](http://raml.org/raml-08-spec).
The parser depends on SnakeYaml, a Java YAML parser.

The old version that only support RAML 0.8 is still available [here](https://github.com/raml-org/raml-java-parser/tree/v1).

This parser is in beta state of development.
See http://raml.org for more information about RAML.


## Build
Expand Down Expand Up @@ -34,8 +38,6 @@ if (ramlModelResult.hasErrors())
else
{
Api api = ramlModelResult.getApiV10();

}
```


5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<artifactId>raml-parser-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>Raml Java Parser 2nd generation parent</name>
<description>Raml parser implemented in java</description>

<modules>
<module>yagi</module>
Expand Down Expand Up @@ -191,6 +193,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down

0 comments on commit a123b0b

Please sign in to comment.