jimmoores / quandl4j

Java wrapper for Quandl REST API
quandl4j.org
Apache License 2.0
78 stars 22 forks source link

[2.0.0] Maven pom not downloading core and tablesaw #34

Closed kenfehling closed 6 years ago

kenfehling commented 7 years ago

When I try to install I get

_remote.repositories
quandl-2.0.0.pom.sha1
quandl-2.0.0.pom

in ~/.m2/repository/com/jimmoores/quandl/2.0.0 but nothing else under ~/.m2/repository/com/jimmoores/

Maven 3.5 MacOS 10.12.6

java version "1.8.0_131" Java(TM) SE Runtime Environment (build 1.8.0_131-b11) Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)

jimmoores commented 7 years ago

I'll investigate on a clean machine and get back to you.

On 28 Sep 2017 02:31, "Ken Fehling" notifications@github.com wrote:

When I try to install I get

_remote.repositories quandl-2.0.0.pom.sha1 quandl-2.0.0.pom

in ~/.m2/repository/com/jimmoores/quandl/2.0.0 but nothing else under ~/.m2/repository/com/jimmoores/

Maven 3.5 MacOS 10.12.6

java version "1.8.0_131" Java(TM) SE Runtime Environment (build 1.8.0_131-b11) Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/jimmoores/quandl4j/issues/34, or mute the thread https://github.com/notifications/unsubscribe-auth/AADG-2n5yIoONe_pFZ2Eqf75DtvoarwYks5smvbvgaJpZM4Pmm7L .

jimmoores commented 7 years ago

Ok, I see. My documentation isn't correct. You need to add dependencies for quandl-core and quandl-tablesaw separately.

<dependencies>
  <dependency>
    <groupId>com.jimmoores</groupId>
    <artifactId>quandl-core</artifactId>
    <version>2.0.0</version>
  </dependency>
  <dependency>
    <groupId>com.jimmoores</groupId>
    <artifactId>quandl-tablesaw</artifactId>
    <version>2.0.0</version>
  </dependency>
</dependencies>

I'll update the documentation and see if i can get the parent pom working.

Apologies for that, and many thanks for pointing it out.

kenfehling commented 7 years ago

Ahh ok, no problem. Would adding it in quandl4j's pom work, like this? https://github.com/jimmoores/quandl4j/pull/35