json-kotlin-schema-codegen
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.pwall.json</groupId> <artifactId>json-kotlin-schema-codegen</artifactId> <version>0.120</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> <groupId>net.pwall.json</groupId> <artifactId>json-kotlin-schema-codegen</artifactId> <version>0.120</version> <name>JSON Schema Code Generation</name> <description>Code generation from JSON Schema to Kotlin or Java</description> <packaging>jar</packaging> <url>https://github.com/pwall567/json-kotlin-schema-codegen</url> <parent> <groupId>net.pwall.maven</groupId> <artifactId>maven-kotlin</artifactId> <version>8.0</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> <!-- Stop IntelliJ doing stupid things with Java version! --> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> </properties> <licenses> <license> <name>The MIT License (MIT)</name> <url>http://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/pwall567/json-kotlin-schema-codegen.git</connection> <url>https://github.com/pwall567/json-kotlin-schema-codegen</url> </scm> <developers> <developer> <id>pwall@pwall.net</id> <name>Peter Wall</name> <email>pwall@pwall.net</email> <url>https://pwall.net</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Australia/Sydney</timezone> </developer> </developers> <pluginRepositories> <pluginRepository> <id>central</id> <name>Maven Central</name> <url>https://repo1.maven.org/maven2/</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>net.pwall.json</groupId> <artifactId>json-kotlin-schema</artifactId> <version>0.56</version> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>kjson-core</artifactId> <version>10.0</version> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>kjson-pointer</artifactId> <version>8.8</version> </dependency> <dependency> <groupId>io.jstuff</groupId> <artifactId>json-functions</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>mustache-k</artifactId> <version>3.9</version> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>kjson-yaml</artifactId> <version>3.9</version> </dependency> <dependency> <groupId>io.jstuff</groupId> <artifactId>pipelines</artifactId> <version>6.0</version> </dependency> <dependency> <groupId>io.jstuff</groupId> <artifactId>int-output</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>io.kstuff</groupId> <artifactId>log-front-kotlin</artifactId> <version>6.2</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>kjson</artifactId> <version>9.7</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kstuff</groupId> <artifactId>log-front-testk</artifactId> <version>6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kstuff</groupId> <artifactId>should-test</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src/main/kotlin</sourceDirectory> <testSourceDirectory>src/test/kotlin</testSourceDirectory> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <phase>process-test-resources</phase><!-- Ensure Kotlin is compiled before Java --> <goals> <goal>test-compile</goal> </goals> </execution> <execution> <id>integration-test-compile</id> <phase>pre-integration-test</phase> <goals> <goal>test-compile</goal> </goals> <configuration> <sourceDirs> <sourceDir>src/test-integration/kotlin</sourceDir> <sourceDir>target/generated-test-sources/kotlin</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <includes> <include>**/IntegrationTest.*</include> </includes> </configuration> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>install</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>