yahoo-finance-scraper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.mainstringargs</groupId>
<artifactId>yahoo-finance-scraper</artifactId>
<version>1.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</groupId>
<artifactId>yahoo-finance-scraper</artifactId>
<version>1.1</version>
<name>yahoo-finance-scraper</name>
<description>Scraper Library for Yahoo Finance Stock Data.</description>
<url>https://github.com/mainstringargs/yahoo-finance-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/yahoo-finance-scraper.git</connection>
<developerConnection>https://github.com/mainstringargs/yahoo-finance-scraper.git</developerConnection>
<url>https://github.com/mainstringargs/yahoo-finance-scraper</url>
</scm>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>1.4.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.github.mainstringargs</groupId>
<artifactId>stock-data-spi</artifactId>
<version>1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>