fastjson2-kotlin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2-kotlin</artifactId> <version>2.0.3</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> <artifactId>fastjson-parent</artifactId> <groupId>com.alibaba.fastjson2</groupId> <version>2.0.3</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>fastjson2-kotlin</artifactId> <packaging>jar</packaging> <name>fastjson2-kotlin</name> <url>https://github.com/alibaba/fastjson2</url> <inceptionYear>2022</inceptionYear> <licenses> <license> <name>Apache 2</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <url>https://github.com/alibaba/fastjson2</url> <connection>scm:git:https://git@github.com/alibaba/fastjson2.git</connection> </scm> <organization> <name>Alibaba Group</name> <url>https://github.com/alibaba</url> </organization> <dependencies> <dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>com/alibaba/fastjson2/**/*.java</include> </includes> <systemPropertyVariables> <user.timezone>Asia/Shanghai</user.timezone> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>