kjson-spring3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.kjson</groupId> <artifactId>kjson-spring3</artifactId> <version>9.9</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-spring3</artifactId> <version>9.9</version> <name>Spring Boot 3 JSON message converter for kjson</name> <description>Message converter which simplifies use of kjson by Spring Boot 3 applications</description> <packaging>jar</packaging> <url>https://github.com/pwall567/kjson-spring3</url> <parent> <groupId>io.kjson</groupId> <artifactId>kjson-maven</artifactId> <version>6.0</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>17</java.version> <spring.version>6.2.7</spring.version> <spring.boot.version>3.5.0</spring.boot.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-spring3.git</connection> <url>https://github.com/pwall567/kjson-spring3.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>10.2</version> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>kjson</artifactId> <version>9.9</version> </dependency> <dependency> <groupId>io.jstuff</groupId> <artifactId>log-front-api</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test</artifactId> <version>${spring.boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${spring.boot.version}</version> </dependency> <dependency> <groupId>io.kstuff</groupId> <artifactId>should-test</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-test-autoconfigure</artifactId> <version>${spring.boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${spring.boot.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>kjson-annotations</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kjson</groupId> <artifactId>kjson-test</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kstuff</groupId> <artifactId>log-front-kotlin</artifactId> <version>6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>io.kstuff</groupId> <artifactId>log-front-testk</artifactId> <version>6.2</version> <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.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>