kjson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson</artifactId>
<version>9.2</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>
<artifactId>kjson</artifactId>
<version>9.2</version>
<name>Reflection-based JSON serialization and deserialization for Kotlin</name>
<description>Reflection-based JSON serialization and deserialization for Kotlin</description>
<packaging>jar</packaging>
<url>https://github.com/pwall567/kjson</url>
<parent>
<groupId>io.kjson</groupId>
<artifactId>kjson-maven</artifactId>
<version>5.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/kjson.git</connection>
<url>https://github.com/pwall567/kjson.git</url>
</scm>
<developers>
<developer>
<id>pwall@pwall.net</id>
<name>Peter Wall</name>
<email>pwall@pwall.net</email>
<url>http://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>io.kjson</groupId>
<artifactId>kjson-core</artifactId>
<version>9.2</version>
</dependency>
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-stream</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-optional</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-annotations</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-pointer</artifactId>
<version>8.6</version>
</dependency>
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>json-functions</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>json-co-functions</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>json-validation</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>net.pwall.text</groupId>
<artifactId>textmatcher</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>net.pwall.util</groupId>
<artifactId>date-output</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>net.pwall.util</groupId>
<artifactId>co-date-output</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>net.pwall.util</groupId>
<artifactId>int-output</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>net.pwall.util</groupId>
<artifactId>co-int-output</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>net.pwall.util</groupId>
<artifactId>immutables</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>1.8.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.kstuff</groupId>
<artifactId>should-test</artifactId>
<version>4.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.kjson</groupId>
<artifactId>kjson-test</artifactId>
<version>4.0</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>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>test-compile-java</id>
<phase>test-compile</phase>
</execution>
</executions>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</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>
</plugins>
</build>
</project>