jmespath-vertx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.burt</groupId> <artifactId>jmespath-vertx</artifactId> <version>0.6.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>jmespath-vertx</artifactId> <name>JMESPath Vert.X</name> <description>A JMESPath implementation for Vert.X</description> <parent> <groupId>io.burt</groupId> <artifactId>jmespath</artifactId> <version>0.6.0</version> </parent> <properties> <vertx.version>4.4.6</vertx.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jmespath-core</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jmespath-core</artifactId> <version>${project.parent.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-core</artifactId> <version>${vertx.version}</version> </dependency> </dependencies> </project>