problem-gson
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.zalando</groupId>
<artifactId>problem-gson</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>org.zalando</groupId>
<artifactId>problem-parent</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>problem-gson</artifactId>
<name>${project.artifactId}</name>
<properties>
<gson.version>2.10.1</gson.version>
</properties>
<dependencies>
<dependency>
<groupId>org.zalando</groupId>
<artifactId>problem</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path-assert</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
</path>
</annotationProcessorPaths>
<compilerArgs combine.children="append">
<arg>--add-reads</arg>
<arg>org.zalando.problem.gson=com.google.gson</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>