vjson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.v-play-games</groupId>
<artifactId>vjson</artifactId>
<version>2.0.0</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.github.v-play-games</groupId>
<artifactId>maven-deploy</artifactId>
<version>1.0.4</version>
</parent>
<artifactId>vjson</artifactId>
<version>2.0.0</version>
<name>VJSON</name>
<description>A simple library to serialize and deserialize JSON text</description>
<url>http://github.com/V-Play-Games/VJSON</url>
<scm>
<connection>scm:git:git://github.com/V-Play-Games/VJSON.git</connection>
<developerConnection>scm:git:ssh://github.com:V-Play-Games/VJSON.git</developerConnection>
<url>http://github.com/V-Play-Games/VJSON</url>
</scm>
<properties>
<project.java.version>23</project.java.version>
<kotlin.version>2.1.10</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sourceDirs>
<source>src/main/java</source>
<source>target/generated-sources/annotations</source>
</sourceDirs>
</configuration>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
<configuration>
<sourceDirs>
<source>src/test/java</source>
<source>target/generated-test-sources/test-annotations</source>
</sourceDirs>
</configuration>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
<args>
<arg>-Xwhen-guards</arg>
</args>
</configuration>
</plugin>
</plugins>
</build>
</project>