Skip to content

JSSAggie/raml-validator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RAML Validator

This maven plugin will validate a RAML file and fail the build stage if there are errors. In order to use in your project, add this to the build section of your pom file:

<build>
        <plugins>
            <plugin>
                <groupId>com.cvent</groupId>
                <artifactId>raml-validator</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <ramlFile>api.raml</ramlFile>
                </configuration>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>validate-raml</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            ...
        </plugins>
        ...
<build>

About

Maven plugin that validates a RAML file

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%