alpha-vantage-scraper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mainstringargs.alphavantagescraper</groupId> <artifactId>alpha-vantage-scraper</artifactId> <version>1.5.1</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>io.github.mainstringargs.alphavantagescraper</groupId> <artifactId>alpha-vantage-scraper</artifactId> <version>1.5.1</version> <name>alpha-vantage-scraper</name> <description>Scraper Library for Alpha Vantage Stock Data.</description> <url>https://github.com/mainstringargs/alpha-vantage-scraper</url> <inceptionYear>2018</inceptionYear> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>mainstringargs</id> <name>main(String[] args)</name> <email>mainstringargs@github.io</email> </developer> </developers> <scm> <connection>https://github.com/mainstringargs/alpha-vantage-scraper.git</connection> <developerConnection>https://github.com/mainstringargs/alpha-vantage-scraper.git</developerConnection> <url>https://github.com/mainstringargs/alpha-vantage-scraper</url> </scm> <dependencies> <dependency> <groupId>io.github.mainstringargs</groupId> <artifactId>stock-data-spi</artifactId> <version>1.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> </project>