airtable-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.fuxing</groupId> <artifactId>airtable-api</artifactId> <version>0.3.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>dev.fuxing</groupId> <artifactId>airtable-api</artifactId> <version>0.3.2</version> <name>airtable-api</name> <description>Java Airtable API for https://airtable.com/api</description> <url>https://github.com/fuxingloh/airtable</url> <licenses> <license> <name>Apache License 2.0</name> <url>https://github.com/fuxingloh/airtable/blob/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>fuxing</id> <name>Fuxing Loh</name> <email>maven@fuxing.dev</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/fuxingloh/airtable.git</connection> <developerConnection>scm:git:git@github.com:fuxingloh/airtable.git</developerConnection> <url>https://github.com/fuxingloh/airtable.git</url> </scm> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>fluent-hc</artifactId> <version>4.5.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.4.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.4.2</version> <scope>test</scope> </dependency> </dependencies> </project>