META-INF.maven.net.pwall.json.json-kotlin.pom.xml Maven / Gradle / Ivy
<?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</artifactId>
<version>1.1</version>
<name>JSON serialization and deserialization for Kotlin</name>
<description>Kotlin classes to perform auto-serialization and deserialization.</description>
<packaging>jar</packaging>
<url>https://github.com/pwall567/json-kotlin</url>
<parent>
<groupId>net.pwall.maven</groupId>
<artifactId>maven-kotlin</artifactId>
<version>1.0</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</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.git</connection>
<url>https://github.com/pwall567/json-kotlin</url>
</scm>
<developers>
<developer>
<id>[email protected]</id>
<name>Peter Wall</name>
<email>[email protected]</email>
<url>http://pwall.net</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>Australia/Sydney</timezone>
</developer>
</developers>
<pluginRepositories>
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>net.pwall.json</groupId>
<artifactId>jsonutil</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>net.pwall.util</groupId>
<artifactId>javautil</artifactId>
<version>2.0</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.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<executions>
<execution>
<id>compile-kotlin</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sourceDirs>
<sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
</sourceDirs>
</configuration>
</execution>
<execution>
<id>test-compile-kotlin</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
<configuration>
<sourceDirs>
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
</sourceDirs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>compile-java</id>
<phase>compile</phase>
</execution>
<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>
<configuration>
<sourceDirectories>
<dir>src/main/kotlin</dir>
</sourceDirectories>
<externalDocumentationLinks>
<link>
<url>https://pwall.net/oss/jsonutil/</url>
</link>
</externalDocumentationLinks>
<perPackageOptions>
<packageOptions>
<prefix>net.pwall.json.annotation</prefix>
<suppress>true</suppress>
<!-- bug in handling annotation classes? -->
</packageOptions>
</perPackageOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy