connector-routing-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.interledger.connector</groupId> <artifactId>connector-routing-api</artifactId> <version>0.5.1</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"> <parent> <groupId>org.interledger.connector</groupId> <artifactId>connector-parent</artifactId> <version>0.5.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>connector-routing-api</artifactId> <name>Connector :: Routing API</name> <description>Routing infrastructure for Interledger Connectors.</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>connector-core</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>connector-accounts</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.interledger</groupId> <artifactId>ilp-core</artifactId> </dependency> <dependency> <groupId>org.interledger</groupId> <artifactId>codecs-framework</artifactId> </dependency> <dependency> <groupId>org.interledger</groupId> <artifactId>codecs-ilp</artifactId> </dependency> <dependency> <groupId>org.zalando</groupId> <artifactId>problem</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>