api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.10duke.client.json</groupId> <artifactId>api</artifactId> <version>1.1.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> <groupId>com.10duke.client.json</groupId> <artifactId>api</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <parent> <groupId>com.10duke.client.parent</groupId> <artifactId>java</artifactId> <version>1.1.0</version> <relativePath>../../parent/java/pom.xml</relativePath> </parent> <name>com.10duke.client.json:api</name> <description>Implementation-agnostic API for JSON processing</description> <properties> <xd.module.name>com.tenduke.client.json</xd.module.name> </properties> <dependencies> <!-- External dependencies --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> </dependencies> </project>