json-schema
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.regnosys.rosetta.code-generators</groupId>
<artifactId>json-schema</artifactId>
<version>12.0.0-dev.15</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>com.regnosys.rosetta.code-generators</groupId>
<artifactId>parent</artifactId>
<version>12.0.0-dev.15</version>
</parent>
<artifactId>json-schema</artifactId>
<name>json-schema</name>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.xtend</groupId>
<artifactId>xtend-maven-plugin</artifactId>
<executions>
<execution>
<id>Generate xtend sources</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/target/main/generated/xtend</outputDirectory>
</configuration>
</execution>
<execution>
<id>Generate xtend test sources</id>
<phase>generate-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
<configuration>
<testOutputDirectory>${project.basedir}/target/test/generated/xtend</testOutputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.finos.rune</groupId>
<artifactId>rune-runtime</artifactId>
</dependency>
<dependency>
<groupId>org.finos.rune</groupId>
<artifactId>rune-lang</artifactId>
</dependency>
<dependency>
<groupId>org.finos.rune-common</groupId>
<artifactId>rune-common</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.xtend</groupId>
<artifactId>org.eclipse.xtend.lib</artifactId>
</dependency>
<dependency>
<groupId>org.finos.rune</groupId>
<artifactId>rune-testing</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.regnosys.rosetta.code-generators</groupId>
<artifactId>test-helper</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>