You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to download Vertica JDBC Driver and install it using the information provided in the document. Here's the output of the jar installation.
mvn install:install-file -Dfile=$HOME/Downloads/vertica-jdbc-8.0.1-6.jar -DgroupId=com.vertica -DartifactId=vjdbc8 -Dversion=8.0.1 -Dpackaging=jar
[INFO] Scanning for projects...
[INFO]
[INFO] ---------------------< istc.bigdawg:istc.bigdawg >----------------------
[INFO] Building istc.bigdawg 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- maven-install-plugin:2.4:install-file (default-cli) @ istc.bigdawg ---
[INFO] Installing /Users/eltons/Downloads/vertica-jdbc-8.0.1-6.jar to /Users/eltons/.m2/repository/com/vertica/vjdbc8/8.0.1/vjdbc8-8.0.1.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.476 s
[INFO] Finished at: 2020-03-26T20:58:08-03:00
[INFO] ------------------------------------------------------------------------
However, when try to execute the next step of the maven setup I get an error indicating that the dependencies required could not be found:
mvn package -P mit -DskipTests
[INFO] Scanning for projects...
[INFO]
[INFO] ---------------------< istc.bigdawg:istc.bigdawg >----------------------
[INFO] Building istc.bigdawg 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from maven: http://central.maven.org/maven2/org/neo4j/neo4j-jdbc/2.3.2/neo4j-jdbc-2.3.2.jar
Downloading from neo4j-public: http://m2.neo4j.org/content/groups/public/org/neo4j/neo4j-jdbc/2.3.2/neo4j-jdbc-2.3.2.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.172 s
[INFO] Finished at: 2020-03-26T21:01:08-03:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project istc.bigdawg: Could not resolve dependencies for project istc.bigdawg:istc.bigdawg:jar:1.0-SNAPSHOT: Could not transfer artifact org.neo4j:neo4j-jdbc:jar:2.3.2 from/to maven (http://central.maven.org/maven2/): central.maven.org: nodename nor servname provided, or not known: Unknown host central.maven.org: nodename nor servname provided, or not known -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
I've tried to make some changes in the pom.xml file which seems to have solved the problem partially, but I'm still unable to execute this step successfully. The changes were:
Add <!-- https://mvnrepository.com/artifact/org.neo4j/neo4j-jdbc --> in line 153
Replace <url>http://central.maven.org/maven2/</url> by <url>https://mvnrepository.com/</url> in line 283.
After making those changes the error changed to:
mvn package -P mit -DskipTests
[INFO] Scanning for projects...
[INFO]
[INFO] ---------------------< istc.bigdawg:istc.bigdawg >----------------------
[INFO] Building istc.bigdawg 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from maven: https://mvnrepository.com/org/neo4j/neo4j-jdbc/2.3.2/neo4j-jdbc-2.3.2.jar
Downloading from neo4j-public: http://m2.neo4j.org/content/groups/public/org/neo4j/neo4j-jdbc/2.3.2/neo4j-jdbc-2.3.2.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.243 s
[INFO] Finished at: 2020-03-26T21:07:39-03:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project istc.bigdawg: Could not resolve dependencies for project istc.bigdawg:istc.bigdawg:jar:1.0-SNAPSHOT: Could not transfer artifact org.neo4j:neo4j-jdbc:jar:2.3.2 from/to neo4j-public (http://m2.neo4j.org/content/groups/public): Failed to transfer file http://m2.neo4j.org/content/groups/public/org/neo4j/neo4j-jdbc/2.3.2/neo4j-jdbc-2.3.2.jar with status code 502 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
Is this problem related to my environment configuration? Would there be any way to be able to build BigDAWG from sources using MacOS?
The text was updated successfully, but these errors were encountered:
I'm trying to build BigDAWG from sources using the instructions at
BUILDING.md
.My environment configurations are:
I was able to download Vertica JDBC Driver and install it using the information provided in the document. Here's the output of the jar installation.
However, when try to execute the next step of the maven setup I get an error indicating that the dependencies required could not be found:
I've tried to make some changes in the
pom.xml
file which seems to have solved the problem partially, but I'm still unable to execute this step successfully. The changes were:<!-- https://mvnrepository.com/artifact/org.neo4j/neo4j-jdbc -->
in line 153<url>http://central.maven.org/maven2/</url>
by<url>https://mvnrepository.com/</url>
in line 283.After making those changes the error changed to:
Is this problem related to my environment configuration? Would there be any way to be able to build BigDAWG from sources using MacOS?
The text was updated successfully, but these errors were encountered: