我想在pom.xml中添加一个新的依赖项。日食显示错误:“缺少工件presto:presto-jdbc:jar:0.93” 我试图强制更新快照。没有问题。
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.29</version>
</dependency>
<dependency>
<groupId>presto</groupId>
<artifactId>presto-jdbc</artifactId>
<version>0.93</version>
</dependency>
</dependencies>
是groupId,artifactId是否任意命名?我该如何解决这个问题?( 在我的日食中没有Maven的更新依赖。)
答案 0 :(得分:1)
看看maven central你的依赖应该是
<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-jdbc</artifactId>
<version>0.93</version>
</dependency>
http://search.maven.org/#artifactdetails%7Ccom.facebook.presto%7Cpresto-jdbc%7C0.93%7Cjar