Download json-schema-validator-1.0.29.jar file

Introduction

You can download json-schema-validator-1.0.29.jar in this page.

License

Apache License Version 2.0

Type List

json-schema-validator-1.0.29.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.networknt/json-schema-validator/pom.properties
META-INF/maven/com.networknt/json-schema-validator/pom.xml
com.networknt.schema.AbstractFormat.class
com.networknt.schema.AbstractJsonValidator.class
com.networknt.schema.AbstractKeyword.class
com.networknt.schema.AdditionalPropertiesValidator.class
com.networknt.schema.AllOfValidator.class
com.networknt.schema.AnyOfValidator.class
com.networknt.schema.BaseJsonValidator.class
com.networknt.schema.ConstValidator.class
com.networknt.schema.CustomErrorMessageType.class
com.networknt.schema.DateTimeValidator.class
com.networknt.schema.DependenciesValidator.class
com.networknt.schema.EnumValidator.class
com.networknt.schema.ErrorMessageType.class
com.networknt.schema.ExclusiveMaximumValidator.class
com.networknt.schema.ExclusiveMinimumValidator.class
com.networknt.schema.FalseValidator.class
com.networknt.schema.Format.class
com.networknt.schema.FormatKeyword.class
com.networknt.schema.FormatValidator.class
com.networknt.schema.IfValidator.class
com.networknt.schema.ItemsValidator.class
com.networknt.schema.JsonMetaSchema.class
com.networknt.schema.JsonSchema.class
com.networknt.schema.JsonSchemaException.class
com.networknt.schema.JsonSchemaFactory.class
com.networknt.schema.JsonSchemaRef.class
com.networknt.schema.JsonType.class
com.networknt.schema.JsonValidator.class
com.networknt.schema.Keyword.class
com.networknt.schema.MaxItemsValidator.class
com.networknt.schema.MaxLengthValidator.class
com.networknt.schema.MaxPropertiesValidator.class
com.networknt.schema.MaximumValidator.class
com.networknt.schema.MinItemsValidator.class
com.networknt.schema.MinLengthValidator.class
com.networknt.schema.MinPropertiesValidator.class
com.networknt.schema.MinimumValidator.class
com.networknt.schema.MultipleOfValidator.class
com.networknt.schema.NonValidationKeyword.class
com.networknt.schema.NotAllowedValidator.class
com.networknt.schema.NotValidator.class
com.networknt.schema.OneOfValidator.class
com.networknt.schema.PatternFormat.class
com.networknt.schema.PatternPropertiesValidator.class
com.networknt.schema.PatternValidator.class
com.networknt.schema.PropertiesValidator.class
com.networknt.schema.ReadOnlyValidator.class
com.networknt.schema.RefValidator.class
com.networknt.schema.RequiredValidator.class
com.networknt.schema.SchemaValidatorsConfig.class
com.networknt.schema.SpecVersion.class
com.networknt.schema.ThresholdMixin.class
com.networknt.schema.TrueValidator.class
com.networknt.schema.TypeFactory.class
com.networknt.schema.TypeValidator.class
com.networknt.schema.UUIDValidator.class
com.networknt.schema.UnionTypeValidator.class
com.networknt.schema.UniqueItemsValidator.class
com.networknt.schema.ValidationContext.class
com.networknt.schema.ValidationMessage.class
com.networknt.schema.ValidatorState.class
com.networknt.schema.ValidatorTypeCode.class
com.networknt.schema.format.DomainValidator.class
com.networknt.schema.format.EmailValidator.class
com.networknt.schema.format.InetAddressValidator.class
com.networknt.schema.format.RegexValidator.class
com.networknt.schema.uri.ClasspathURLFactory.class
com.networknt.schema.uri.ClasspathURLFetcher.class
com.networknt.schema.uri.ClasspathURLStreamHandler.class
com.networknt.schema.uri.URIFactory.class
com.networknt.schema.uri.URIFetcher.class
com.networknt.schema.uri.URISchemeFactory.class
com.networknt.schema.uri.URISchemeFetcher.class
com.networknt.schema.uri.URLFactory.class
com.networknt.schema.uri.URLFetcher.class
draftv4.schema.json

Pom

json-schema-validator-1.0.29.pom file content.

<!--
  ~ Copyright (c) 2016 Network New Technologies Inc.
  ~
  ~ 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.networknt</groupId>
    <artifactId>json-schema-validator</artifactId>
    <version>1.0.29</version>
    <packaging>bundle</packaging>
    <description>A json schema validator that supports draft v4, v6, v7 and v2019-09</description>
    <url>https://github.com/networknt/json-schema-validator</url>
    <name>JsonSchemaValidator</name>
    <developers>
        <developer>
            <id>stevehu</id>
            <name>Steve Hu</name>
            <email>stevehu@gmail.com</email>
        </developer>
    </developers>
    <issueManagement>
        <system>github</system>
        <url>https://github.com/networknt/json-schema-validator/issues</url>
    </issueManagement>
    <licenses>
        <license>
            <name>Apache License Version 2.0</name>
            <url>http://repository.jboss.org/licenses/apache-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <connection>scm:git://github.com:networknt/json-schema-validator.git</connection>
        <developerConnection>scm:git://github.com:networknt/json-schema-validator.git</developerConnection>
        <url>https://github.com:networknt/json-schema-validator.git</url>
    </scm>
    <distributionManagement>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
        <repository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>
    <properties>
        <java.version>1.8</java.version>
        <java.testversion>1.8</java.testversion>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <version.jackson>2.10.0</version.jackson>
        <version.slf4j>1.7.25</version.slf4j>
        <version.common-lang3>3.5</version.common-lang3>
        <version.logback>1.2.3</version.logback>
        <version.junit>4.12</version.junit>
        <version.mockito>2.7.21</version.mockito>
        <version.hamcrest>1.3</version.hamcrest>
        <version.undertow>2.0.28.Final</version.undertow>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>${version.jackson}</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>${version.slf4j}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>${version.common-lang3}</version>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>${version.logback}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${version.junit}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>${version.mockito}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>${version.hamcrest}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>io.undertow</groupId>
            <artifactId>undertow-core</artifactId>
            <version>${version.undertow}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
        <testSourceDirectory>${basedir}/src/test/java</testSourceDirectory>
        <resources>
            <resource>
                <filtering>false</filtering>
                <directory>${basedir}/src/main/resources</directory>
                <includes>
                    <include>**/*</include>
                </includes>
            </resource>
        </resources>
        <testResources>
            <testResource>
                <filtering>false</filtering>
                <directory>${basedir}/src/test/resources</directory>
                <includes>
                    <include>**/*</include>
                </includes>
            </testResource>
        </testResources>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>4.2.1</version>
                <extensions>true</extensions>
            </plugin>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.8</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>ossrh</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
            <!--
			<plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-release-plugin</artifactId><version>2.5.3</version></plugin>
            -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.0.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.10.4</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
                <executions>
                    <execution>
                        <id>test-compile</id>
                        <phase>process-test-sources</phase>
                        <goals>
                            <goal>testCompile</goal>
                        </goals>
                        <configuration>
                            <source>${java.testversion}</source>
                            <target>${java.testversion}</target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.19.1</version>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.maven.surefire</groupId>
                        <artifactId>surefire-junit47</artifactId>
                        <version>2.19.1</version>
                    </dependency>
                </dependencies>
            </plugin>
            <!-- JACOCO added for code coverage -->
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>0.7.9</version>
                <executions>
                    <execution>
                        <id>pre-unit-test</id>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                        <configuration>
                            <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
                        </configuration>
                    </execution>
                    <execution>
                        <id>post-unit-test</id>
                        <phase>test</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                        <configuration>
                            <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
                            <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
                        </configuration>                        
                    </execution>
                    <!-- End Executions for unit tests -->
                    <!-- The Executions for integration tests -->
                    <execution>
                        <id>pre-integration-test</id>
                        <phase>pre-integration-test</phase>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                        <configuration>
                            <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
                        </configuration>
                    </execution>
                    <execution>
                        <id>post-integration-test</id>
                        <phase>post-integration-test</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                        <configuration>
                            <dataFile>${project.build.directory}/coverage-reports/jacoco-it.exec</dataFile>
                            <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
                        </configuration>
                    </execution>
                    <!-- End Executions for integration tests -->
                </executions>
            </plugin>
            <!-- end JACOCO -->
        </plugins>
    </build>
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-report-plugin</artifactId>
                <version>2.19.1</version>
            </plugin>
        </plugins>
    </reporting>
    <profiles>
        <profile>
            <id>dev</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.jacoco</groupId>
                        <artifactId>jacoco-maven-plugin</artifactId>
                        <version>${version.jacoco}</version>
                        <executions>
                            <!-- The Executions for merging -->
                            <execution>
                                <id>merge-results</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>merge</goal>
                                </goals>
                                <configuration>
                                    <fileSets>
                                        <fileSet>
                                            <directory>${project.build.directory}/coverage-reports</directory>
                                            <includes>
                                                <include>*.exec</include>
                                            </includes>
                                        </fileSet>
                                    </fileSets>
                                    <destFile>${project.build.directory}/coverage-reports/aggregate.exec</destFile>
                                </configuration>
                            </execution>
                            <execution>
                                <id>post-merge-report</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>report</goal>
                                </goals>
                                <configuration>
                                    <dataFile>${project.build.directory}/coverage-reports/aggregate.exec</dataFile>
                                    <outputDirectory>${project.reporting.outputDirectory}/jacoco-aggregate</outputDirectory>
                                </configuration>
                            </execution>
                            <!-- End Executions for merging -->
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>        
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

POM Entry

<dependency>
   <groupId>com.networknt</groupId>
   <artifactId>json-schema-validator</artifactId>
   <version>1.0.29</version>
</dependency>

Download

If you think the following json-schema-validator-1.0.29.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download json-schema-validator-1.0.29.jar file




PreviousNext

Related