spec
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.ralfspoeth.xldr</groupId>
<artifactId>spec</artifactId>
<version>0.53</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>io.github.ralfspoeth.xldr</groupId>
<artifactId>xldr</artifactId>
<version>0.53</version>
</parent>
<artifactId>spec</artifactId>
<name>xldr spec</name>
<description>Mapping specification model for xldr: input, record, field and load specs.</description>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<!--
So that JsonSchemaTest can hold the published JSON schema to what the
reader accepts, as XsdTest does for the XSD.
It brings Jackson 3, slf4j and ethlo itu with it, which is a large
tree for one assertion - and the alternative was a schema nothing
checks, carrying the two exactly-one-of rules that XSD 1.0 cannot
express. Nothing ships with it.
Versioned here rather than in the parent: one module uses it, so
there is nothing to coordinate.
-->
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>3.0.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.ralfspoeth</groupId>
<artifactId>json</artifactId>
</dependency>
<dependency>
<groupId>io.github.ralfspoeth</groupId>
<artifactId>xmls</artifactId>
</dependency>
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
</dependency>
</dependencies>
</project>