json-schema-validator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.groupon.maven.plugin.json</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2014 Groupon.com
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.groupon.api</groupId>
<artifactId>api-parent-pom</artifactId>
<version>1.0.11</version>
<relativePath />
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.groupon.maven.plugin.json</groupId>
<artifactId>json-schema-validator</artifactId>
<packaging>maven-plugin</packaging>
<name>Json Schema Validator Maven Plugin</name>
<description>Maven plugin to validate json files against a json schema</description>
<url>https://github.com/groupon/json-schema-validator</url>
<version>1.2.0</version>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>gilmarkham</id>
<email>gilligan@groupon.com</email>
<organization>Groupon</organization>
<organizationUrl>http://www.groupon.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>namratalele</id>
<email>nlele@groupon.com</email>
<organization>Groupon</organization>
<organizationUrl>http://www.groupon.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>villekoskela</id>
<email>vkoskela@groupon.com</email>
<organization>Groupon</organization>
<organizationUrl>http://www.groupon.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:groupon/json-schema-validator.git</connection>
<developerConnection>scm:git:git@github.com:groupon/json-schema-validator.git</developerConnection>
<url>https://github.com/groupon/json-schema-validator</url>
<tag>json-schema-validator-1.2.0</tag>
</scm>
<properties>
<!--Dependency versions-->
<findbugs.annotations.version>3.0.0</findbugs.annotations.version>
<jackson.version>2.6.2</jackson.version>
<json-schema-validator.version>2.2.6</json-schema-validator.version>
<junit.version>4.12</junit.version>
<maven-plugin-testing-harness.version>1.2</maven-plugin-testing-harness.version>
<maven-plugin-tools-annotations.version>3.2</maven-plugin-tools-annotations.version>
<maven-plugin-tools-api.version>3.2</maven-plugin-tools-api.version>
<mockito.version>1.10.19</mockito.version>
<plexus-component-annotations.version>1.5.5</plexus-component-annotations.version>
<plexus-resources.version>1.0-alpha-7</plexus-resources.version>
<!--Coverage Settings-->
<jacoco.check.line.coverage>1.0</jacoco.check.line.coverage>
<jacoco.check.branch.coverage>1.0</jacoco.check.branch.coverage>
<!--Plugin versions-->
<maven-plugin-plugin.version>3.2</maven-plugin-plugin.version>
<plexus-component-metadata.version>1.5.5</plexus-component-metadata.version>
</properties>
<build>
<plugins>
<!-- Enable Inherited Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<!-- Project Specific Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven-plugin-plugin.version}</version>
<configuration>
<goalPrefix>json</goalPrefix>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-metadata</artifactId>
<version>${plexus-component-metadata.version}</version>
<executions>
<execution>
<goals>
<goal>generate-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.fge</groupId>
<artifactId>json-schema-validator</artifactId>
<version>${json-schema-validator.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools-api</artifactId>
<version>${maven-plugin-tools-api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-tools-annotations</artifactId>
<version>${maven-plugin-tools-annotations.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-component-annotations</artifactId>
<version>${plexus-component-annotations.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-resources</artifactId>
<version>${plexus-resources.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>${findbugs.annotations.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>${maven-plugin-testing-harness.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>