eaplatanios / tensorflow_scala

TensorFlow API for the Scala Programming Language
http://platanios.org/tensorflow_scala/
Apache License 2.0
939 stars 95 forks source link

Resolving dependencies fail for org.platanios:tensorflow-proto_2.12:0.5.1-SNAPSHOT #184

Closed samikrc closed 4 years ago

samikrc commented 4 years ago

When trying to load the following pom file (I am using Maven), maven is unable to resolve org.platanios:tensorflow-proto_2.12:0.5.1-SNAPSHOT. Is it there in the repo?

Here is my pom file.

    <repositories>
        <repository>
            <id>oss-sonatype</id>
            <name>oss-sonatype</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.platanios/tensorflow -->
        <dependency>
            <groupId>org.platanios</groupId>
            <artifactId>tensorflow_2.12</artifactId>
            <version>0.5.1-SNAPSHOT</version>
        </dependency>

        <dependency>
            <groupId>org.platanios</groupId>
            <artifactId>tensorflow_2.12</artifactId>
            <version>0.5.1-SNAPSHOT</version>
            <classifier>linux-cpu-x86_64</classifier>
        </dependency>
    </dependencies>

Here is the error I get:

Cannot resolve org.platanios:tensorflow-proto_2.12:0.5.1-SNAPSHOT

Thanks for your work on this library!

sbrunk commented 4 years ago

Looking at https://oss.sonatype.org/index.html#nexus-search;quick~platanios the artifact seems to be there. Perhaps a temporary hickup?

samikrc commented 4 years ago

Does seem like a temporary hiccup - retrying today got all the dependencies resolved. Thanks.