Download org.everit.json.schema-1.4.1.jar file

Introduction

You can download org.everit.json.schema-1.4.1.jar in this page.

License

Apache License, Version 2.0

Type List

org.everit.json.schema-1.4.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.everit.json/org.everit.json.schema/pom.properties
META-INF/maven/org.everit.json/org.everit.json.schema/pom.xml
org.everit.json.schema.ArraySchema.class
org.everit.json.schema.BooleanSchema.class
org.everit.json.schema.CombinedSchema.class
org.everit.json.schema.EmptySchema.class
org.everit.json.schema.EnumSchema.class
org.everit.json.schema.FormatValidator.class
org.everit.json.schema.NotSchema.class
org.everit.json.schema.NullSchema.class
org.everit.json.schema.NumberSchema.class
org.everit.json.schema.ObjectComparator.class
org.everit.json.schema.ObjectSchema.class
org.everit.json.schema.ReferenceSchema.class
org.everit.json.schema.Schema.class
org.everit.json.schema.SchemaException.class
org.everit.json.schema.StringSchema.class
org.everit.json.schema.ValidationException.class
org.everit.json.schema.internal.DateTimeFormatValidator.class
org.everit.json.schema.internal.EmailFormatValidator.class
org.everit.json.schema.internal.HostnameFormatValidator.class
org.everit.json.schema.internal.IPAddressValidator.class
org.everit.json.schema.internal.IPV4Validator.class
org.everit.json.schema.internal.IPV6Validator.class
org.everit.json.schema.internal.JSONPrinter.class
org.everit.json.schema.internal.URIFormatValidator.class
org.everit.json.schema.loader.SchemaClient.class
org.everit.json.schema.loader.SchemaLoader.class
org.everit.json.schema.loader.internal.DefaultSchemaClient.class
org.everit.json.schema.loader.internal.JSONPointer.class
org.everit.json.schema.loader.internal.ReferenceResolver.class
org.everit.json.schema.loader.internal.ResolutionScopeChangeListener.class
org.everit.json.schema.loader.internal.TypeBasedMultiplexer.class
org.everit.json.schema.loader.internal.WrappingFormatValidator.class

Pom

org.everit.json.schema-1.4.1.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--

    Copyright (C) 2011 Everit Kft. (http://www.everit.org)

    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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.everit.json</groupId>
    <artifactId>org.everit.json.schema</artifactId>
    <version>1.4.1</version>
    <packaging>bundle</packaging>
    <properties>
        <projectpath>json-schema-validator</projectpath>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
    <name>everit-org/json-schema</name>
    <url>https://github.com/everit-org/json-schema</url>
    <description>Implementation of the JSON Schema Core Draft v4 specification built with the org.json API</description>
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <developers>
        <developer>
            <name>Everit Team</name>
        </developer>
    </developers>
    <organization>
        <name>Everit Kft.</name>
        <url>http://www.everit.org</url>
    </organization>
    <scm>
        <connection>scm:git:git://github.com/everit-org/${projectpath}.git</connection>
        <developerConnection>scm:git:https://github.com/everit-org/${projectpath}.git</developerConnection>
        <url>https://github.com/everit-org/${projectpath}</url>
    </scm>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                        <Import-Package>*
                        </Import-Package>
                        <Export-Package>
                            ${project.artifactId};version=${project.version},
                            ${project.artifactId}.loader;version=${project.version}
                        </Export-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20160810</version>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>19.0</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-validator</groupId>
            <artifactId>commons-validator</artifactId>
            <version>1.5.1</version>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>nl.jqno.equalsverifier</groupId>
            <artifactId>equalsverifier</artifactId>
            <version>2.1.5</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.everit.json</groupId>
   <artifactId>org.everit.json.schema</artifactId>
   <version>1.4.1</version>
</dependency>

Download

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



Download org.everit.json.schema-1.4.1.jar file




PreviousNext

Related