versatile-conformance
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.nscuro</groupId>
<artifactId>versatile-conformance</artifactId>
<version>0.18.3</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.nscuro</groupId>
<artifactId>versatile-parent</artifactId>
<version>0.18.3</version>
</parent>
<name>${project.groupId}:${project.artifactId}</name>
<artifactId>versatile-conformance</artifactId>
<packaging>jar</packaging>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<project.parentBaseDir>../</project.parentBaseDir>
</properties>
<dependencies>
<dependency>
<groupId>io.github.nscuro</groupId>
<artifactId>versatile-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jsonschema2pojo</groupId>
<artifactId>jsonschema2pojo-maven-plugin</artifactId>
<version>1.3.3</version>
<executions>
<execution>
<id>vers-test-schema</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<annotationStyle>jackson2</annotationStyle>
<sourceDirectory>${basedir}/vers-spec/schemas/vers-test.schema-0.1.json</sourceDirectory>
<targetPackage>io.github.nscuro.versatile.conformance.schema</targetPackage>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>